Re: CGI::Simple 0.077

2005-03-16 Thread Joshua N Pritikin
On Wed, 2005-03-16 at 17:51 +0530, Joshua N Pritikin wrote: > Now I'm getting a different error: > >'.cgi_error' => '500 Bad read on multipart/form-data! wanted 880, got > 0', Ah, I see. Careful examination of CGI.pm suggests that STDIN no longer works for POST data. I changed all the sysre

Re: CGI::Simple 0.077

2005-03-16 Thread Joshua N Pritikin
On Wed, 2005-03-16 at 11:24 +0530, Joshua N Pritikin wrote: > I'm trying to get parameters from multipart/form-data. D'oh! I was passing the request object into CGI::Simple. CGI::Simple->new($r); I guess I should pass in nothing, e.g.: CGI::Simple->new(); Now I'm getting a different error

Re: CGI::Simple 0.077

2005-03-15 Thread Joshua N Pritikin
On Tue, 2005-03-15 at 23:21 -0500, Perrin Harkins wrote: > On Wed, 2005-03-16 at 08:47 +0530, Joshua N Pritikin wrote: > > CGI::Simple doesn't work with mod_perl 1.999.20: > > > > $data = $self->{'.mod_perl'} ? Apache->request->args : > > $ENV{'QUERY_STRING'} || $ENV{'REDIRECT_QUERY_ST

Re: CGI::Simple 0.077

2005-03-15 Thread Perrin Harkins
On Wed, 2005-03-16 at 08:47 +0530, Joshua N Pritikin wrote: > CGI::Simple doesn't work with mod_perl 1.999.20: > > $data = $self->{'.mod_perl'} ? Apache->request->args : > $ENV{'QUERY_STRING'} || $ENV{'REDIRECT_QUERY_STRING'} || ''; > > Apache->request->args returns an Apache::RequestR