> Hi,
> I´m finding the online documentation regarding mod_perl2 confusing
> with regards to all the various modules dealing with request structures etc:
> APR::Request, Apache2::Request, Apache2::RequestRec, Apache2::Upload,
> etc.
> Does anyone know of a tutorial or example code that sorts these
-Original Message-
From: Fred Moyer
Try this link:
http://perl.apache.org/docs/2.0/user/intro/start_fast.html
--
Yes, thanks - I've read that.
-Original Message-
From: Fred Moyer
For handling POST data you will likely want to install libapreq2,
which i
I'd recommend the book:
http://www.amazon.com/Writing-Apache-Modules-Perl-C/dp/156592567X
It's a bit old but many of the topics in it are still relevant and
useful. Plus, with it being so old, you can get used copies of it very
affordably.
Hope this helps!
Warm Regards,
Jordan Michaels
On 0
Try this link:
http://perl.apache.org/docs/2.0/user/intro/start_fast.html
For handling POST data you will likely want to install libapreq2,
which is basically the equivalent of CGI:
http://search.cpan.org/dist/libapreq2/
use Apache2::Request;
$req = Apache2::Request->new($r);
@foo = $r
Hi,
I’m finding the online documentation regarding mod_perl2 confusing
with regards to all the various modules dealing with request structures etc:
APR::Request, Apache2::Request, Apache2::RequestRec, Apache2::Upload,
etc.
Does anyone know of a tutorial or example code that sorts these out?
Ideally
Hi again: Tracking this down further. I noticed that when we build this
apache/mod_perl we had turned off the 'make test' step. Attached is a
formal bug report with debugging enabled for both mod_perl and perl. The
test suite does not even start, as the server segfaults before the tests
can