My forum software supports mod_perl which apparently makes it work a helluva lot faster. The mod_perl instructions for it require this:
quote:
2. Now, add the following section to your httpd.conf file:
<Location /url/to/gforum>
SetHandler perl-script
PerlHandler Apache::Registry
PerlSendHeader On
Options +ExecCGI
</Location>
and this:
quote:
3. Most mod_perl installations have a startup file for loading perl scripts you
are using when httpd is started. You need to add the following to your startup
file:
use lib '/full/path/to/admin';
require GForum::mod_perl;
where '/full/path/to/admin' is a full system path to your admin directory.
If you don't have a startup file, you should create one by adding to
your httpd.conf file:
PerlRequire /path/to/startup.pl
and adding the above lines into startup.pl.
Is there anyway you can see that this can be done on a per user basis?
Sincerely,
Joe