[mp2] OR_EXEC_ON_READ

2005-05-21 Thread Dorian Taylor
did this go away? i can't find any mention of it in the source other than the documentation and core module logic. i'm currently playing with making a container configuration, and the documentation says to set OR_EXEC_ON_READ on the req_override, but it doesn't appear to be present in Apache2::Cons

Re: [mp2] porting older mp2 code to 2.0.0 - I'm stuck with params from apreq!

2005-05-21 Thread Carl Brewer
Carl Brewer wrote: If I'd looked in : docs/html/group__apreq__xs__request.html I'd have seen that all I needed to do was to change use Apache::Request; to use Apache2::Request; and my $req = Apache::Request->new($r); to my $req = Apache2::Request->new($r); and it would have just worked!

[mp2] porting older mp2 code to 2.0.0 - I'm stuck with params from apreq!

2005-05-21 Thread Carl Brewer
I'm porting my code to mp2.0.0 from 1.99.older (16?) - so far mostly ok, but I'm stuck on a conversion with apreq - I've now got libapreq2-2.05-dev installed (the distributed version, not sucked from svn/cvs). I was using the following code to grab input : sub hash_post { # returns a has

Re: Is mod_perl installed

2005-05-21 Thread Jay Scherrer
Cfaust, What does your httpd.conf file say after the modules listing? If it says something like: # #load configfiles from the config directory "/etc/httpd.conf.d" # Include conf.d/*.conf # Then check there for your: perl.conf file. Within the perl.conf file you will find: LoadModule perl_module mo

Re: [mp2] Problem with custom config in Location

2005-05-21 Thread Herve Guillemet
Herve, you've uncovered a bloody global perl context switch bug. Please try this patch (the reproducing tar ball now works for me under worker) This test does run successfully with your patch. Now define two directives. Use one inside the Location, another outside, and core dumps again. Test ta

Re: [mp2] Problem with custom config in Location

2005-05-21 Thread Herve Guillemet
On Fri, 20 May 2005, Stas Bekman wrote: Herve, you've uncovered a bloody global perl context switch bug. Please try this patch (the reproducing tar ball now works for me under worker) This test does run successfully with your patch. Now define two directives. Use one inside the Location, an