in reply to mod_perl.so installed, not running?
Basically this prints out your environment within Apache. You should see mod_perl as your gateway I believe. Also a setting somewhere for which version of mod_perl you are running. The program should just work without the #! at the top. If it doesn't then try adding it. This means you are not loading mod_perl. It runs fine as is if mod_perl is loaded.print "Content-type: text/plain\r\n\r\n"; print "Server's environment\n"; foreach ( keys %ENV ) { print "$_\t$ENV{$_}\n"; }
Server's environment PERL_SEND_HEADER On SERVER_NAME test SERVER_SOFTWARE Apache/1.3.31 (Unix) mod_perl/1.29 GATEWAY_INTERFACE CGI-Perl/1.1 MOD_PERL mod_perl/1.29
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: mod_perl.so installed, not running?
by Anonymous Monk on Jul 28, 2004 at 17:08 UTC | |
by u235sentinel (Hermit) on Jul 28, 2004 at 20:08 UTC | |
by Anonymous Monk on Jul 29, 2004 at 13:31 UTC | |
by u235sentinel (Hermit) on Jul 29, 2004 at 15:04 UTC | |
by Anonymous Monk on Aug 02, 2004 at 18:45 UTC |