in reply to Problem with getting POST request data with Apache::Request object

I have a question: Has your script worked before or not at all? If it's worked before, then you might want to convert the POST request into a GET request. I'm not an expert on Apache, but I remember that you can only read POST data from a socket once, so you have to store the data somewhere, for example, by switching the the request method from POST to GET and then storing the POST data in a query string. See:

Convert a POST Request into a GET Request

  • Comment on Re: Problem with getting POST request data with Apache::Request object

Replies are listed 'Best First'.
Re^2: Problem with getting POST request data with Apache::Request object
by thil (Sexton) on Aug 08, 2006 at 12:09 UTC

    Thanks for the replies. It did not work at all.(at least once)

    But I have a code (uses Apache::Request to get data) which works fine with other machines, and not in mine.

    is it possible a configuration issue to cause this type of a situation??



    Thilani