Mod_Perl2 getting started

2012-08-21 Thread joe
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

Re: Mod_Perl2 getting started

2012-08-21 Thread Fred Moyer
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

Re: Mod_Perl2 getting started

2012-08-21 Thread Jordan Michaels
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

Re: Mod_Perl2 getting started

2012-08-21 Thread joe
-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

Re: Mod_Perl2 getting started

2012-08-21 Thread Randolf Richardson
> 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

Re: Mod_Perl2 getting started

2012-08-22 Thread Keywan Ghadami
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

AW: Mod_Perl2 getting started

2012-08-22 Thread Alexander.Elgert
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

Re: Mod_Perl2 getting started

2012-08-22 Thread Randolf Richardson
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