Randy Kobes wrote:
Hi Tom,
Thanks for the detailed report, and patch. I tried out
the patch with perl-5.8.8, compiled against Apache/2.2.4,
and all the tests passed. However, the restart problem
still remains; evidently,
http://issues.apache.org/bugzilla/show_bug.cgi?id=43534
or something
I have solved the problem. I was returning 200 instead of using
Apache2::Const::OK. My response was indeed interpreted as 'OK" by
apache - but not by some place somewhere else. There was no error
message anywhere. I'll modify the bugreport below to have it
addressed or not at the maintainer
Once complete, I can preload the modules at Apache startup. Is
that correct?
If you want to benefit from pre compiling your code using something
like a startup.pl file to load the modules
you use would speed things up considerably from running them as CGI cgi.
I use 2 files one for 3rd pa
I have a site that is written with traditional CGI (no cgi.pm ). I use
mod_perl2 but rather than run the scripts as CGI I want to convert them to
mod_perl. I have read Beckman's latest on mod_perl 2 and have Practical
Mod_Perl.
Here's the question. From what I have read, it looks like I sh
At 09:12 PM 12/28/2007, you wrote:
[...]
The reason this does not work under modperl version 2.0 is because under
handler "perl-script", %ENV is untied from the C environment. The
[...]
Thanks very much, that works.