in reply to Re^2: Problem with accessing POST data through Apache::Request
in thread Problem with accessing POST data through Apache::Request

Can a configuaration issue cause this type of an errornuos situation? Here is my Apache mod_perl configuration for your information.

Probably not ... I think your issue is mixing CGI with Apache::Request. You new CGI is consuming the post before Apache::Request can read it. I would suggest using either CGI or Apache::Request but not both. If you want to use both, place the new CGI after all your $apr->param calls.

And ... send the Post data along with the URL ... it's no longer POST data when you do that ... that makes it GET data

-derby

Replies are listed 'Best First'.
Re^4: Problem with accessing POST data through Apache::Request
by thil (Sexton) on Aug 14, 2006 at 13:03 UTC

    Thanks a lot for all your responses. It worked. :)

    It was the Apache::Request - CGI mix which gave me troubles.