in reply to Re^2: mod_perl.so installed, not running?
in thread mod_perl.so installed, not running?
Basically the startup.pl includes which modules I want to include and a couple of additional libraries I wanted to add. Stuff that we wrote for our application. The last part is what you need to pay attention to. If you don't have your environment setup properly then it won't work.# MOD_Perl Section <Directory "/usr/local/apache/perllibrary"> AllowOverride None Options ExecCGI Order allow,deny Allow from All </Directory> + ScriptAlias /perl/ "/usr/local/apache/perllibrary/" + <IfModule mod_perl.c> + PerlRequire "/usr/local/apache/perllibrary/startup.pl" + <Location /perl> SetHandler perl-script PerlHandler Apache::Registry PerlSendHeader On </Location> . . .
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: mod_perl.so installed, not running?
by Anonymous Monk on Jul 29, 2004 at 13:31 UTC | |
by u235sentinel (Hermit) on Jul 29, 2004 at 15:04 UTC | |
|
Re^4: mod_perl.so installed, not running?
by Anonymous Monk on Aug 02, 2004 at 18:45 UTC |