in reply to mod-perl configuration under Apache2
The preferred and faster method is to write a handler and use the methods provided by Apache2::RequestRec:PerlOptions +ParseHeaders
You could also use CGI.pm and it should do the right thing:use Apache2::RequestRec (); # Inside your handler... $r->content_type('text/html');
Does this make a difference? What does the access log show? Is it serving a page? You can also print out $ENV{MOD_PERL} and it should tell you if you are running mod_perl and what version, but you need to get the script running first. :)use CGI; print CGI::header();
|
|---|