[Catalyst] Two Strange Catalyst/Apache Issues
Perrin Harkins
perrin at elem.com
Fri May 25 05:47:48 GMT 2007
On 5/24/07, Randy J. Ray <randy.j.ray at gmail.com> wrote:
> PerlModule Bylines # This is line 259
This 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.html
To 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
More information about the Catalyst
mailing list