Re: APR::Request::Apache2 param() method

2007-01-31 Thread Joe Schaefer
Dave Viner <[EMAIL PROTECTED]> writes: > removing the enctype makes no difference. still encounter the same error. OK, I think we're getting somewhere now. Are you using code that calls CGI.pm from a different handler (say in the auth phase)? -- Joe Schaefer

Re: APR::Request::Apache2 param() method

2007-01-31 Thread Dave Viner
removing the enctype makes no difference. still encounter the same error. i also added discard_request_body... the code now reads: my $req = APR::Request::Apache2->handle($r); $r->discard_request_body; my($arg_status,$body_status) = $req->param_status(); $r->log->debug("Parsi

Re: APR::Request::Apache2 param() method

2007-01-30 Thread Joe Schaefer
Dave Viner <[EMAIL PROTECTED]> writes: > Hi, > > I am having a strange problem with APR::Request::Apache2 and the param > () method. When I send a POST from Firefox, my code works perfectly. When I > send a POST from Safari or Windows/IE, my code fails. > > Here is the HTML which displays the fo

APR::Request::Apache2 param() method

2007-01-30 Thread Dave Viner
Hi, I am having a strange problem with APR::Request::Apache2 and the param () method. When I send a POST from Firefox, my code works perfectly. When I send a POST from Safari or Windows/IE, my code fails. Here is the HTML which displays the form to send: method="post" enctype="mult