t; To: modperl@perl.apache.org
> Subject: Re: Mod_Perl2 getting started
>
> > 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::R
9-30 (Fax)
E-Mail: alexander.elg...@gmx.de
Von: Keywan Ghadami [k.ghad...@ibson.com]
Gesendet: Mittwoch, 22. August 2012 10:11
An: modperl@perl.apache.org
Betreff: Re: Mod_Perl2 getting started
Hi Joe,
have also a look at Frameworks and Interfaces like PSG
Hi Joe,
have also a look at Frameworks and Interfaces like PSGI or Catalyst.
They provide a more generic way to do these things:
"parsed request, handles args as querystrings and Post data, uploads a
file or two, and returns an html page to the requestor"
that way you can use mod_perl in the b
> 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