Re: mp2, STDIN/POST is clobbered by CGI->new($r);

2008-09-02 Thread Perrin Harkins
On Fri, Aug 29, 2008 at 6:35 PM, Ashley Pond V <[EMAIL PROTECTED]> wrote: > How could you read the POST body without clobbering it to hand off to some > PHP, or whatever is next in line? I don't think you can. Usually people use something like libapreq to get around this, since it can just keep t

mp2, STDIN/POST is clobbered by CGI->new($r);

2008-08-29 Thread Ashley Pond V
Hello everybody. I've got an access handler that is checking some arguments before passing the request off with DECLINED or redirecting back to login/home. The first version broke PHP forms that used POST by using this idiom to check for arguments: my $cgi = CGI->new($r); CGI, I am gue