On 5/24/07, Randy J. Ray <randy.j.ray@gmail.com> wrote:
> PerlModule Bylines # This is line 259This recommended way to do this in mod_perl is actually to make a
separate startup.pl file that loads your modules, not to list them in
httpd.conf. Then you call it with PerlRequire. You can find
documentation and examples here:
http://modperlbook.org/html/ch04_02.htmlTo try it with your setup, just make file called startup.pl with this in it:
use Bylines;
and then call it from httpd.conf:
PerlRequire startup.pl
- Perrin