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
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!
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
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
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
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