Indeed I havent used handlers and understood that concept thoroughly which I'm starting to gresp while reading the docs. So indeed that line of code was silly.
To the point though, I've fixed my problem with: LoadModule apreq_module modules/mod_apreq2.so It appears as if I had unresolved symbols in my error_log -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Perrin Harkins Sent: Friday, September 14, 2007 9:55 PM To: Eli Shemer Cc: modperl@perl.apache.org Subject: Re: apr On 9/14/07, Eli Shemer <[EMAIL PROTECTED]> wrote: > Once I add the apr object I get no error but I also receive no output on the > screen. What are you trying to do? You can't use the mod_perl stuff in a command-line script outside of mod_perl. > my $r=Apache2::RequestRec; What does that do? Is it assigning the string "Apache2::RequestRec" to $r? It's not calling any method. You should get $r passed in to your handler. - Perrin