Re: Trouble Setting POST_MAX

2005-02-22 Thread Joe Schaefer
Jonathan Vanasco <[EMAIL PROTECTED]> writes: > On Feb 21, 2005, at 10:45 PM, Ian Joyce wrote: >> Shouldn't you be using Apache::RequestRec? > > Should I? No, it doesn't parse form data. > All the docs show Apache::Request for this sort of thing, and > Apache::Request has the $r->param('fieldname

Re: Trouble Setting POST_MAX

2005-02-22 Thread Jonathan Vanasco
On Feb 21, 2005, at 10:45 PM, Ian Joyce wrote: Shouldn't you be using Apache::RequestRec? Should I? All the docs show Apache::Request for this sort of thing, and Apache::Request has the $r->param('fieldname') manner of reading GET/POST fields I'm oblivious to 99.1% of mod_perl though, so if i'm

Re: Trouble Setting POST_MAX

2005-02-21 Thread Maxim Sloyko
jonathan vanasco wrote: Author: pileswasp <[EMAIL PROTECTED]> > .1 * 1024 * 1024 = 104857.6 > Perhaps .6 of a byte is difficult for it to cope with? Probably -- but that doesn't seem to be it either. I think maybe there was an issue with my compile ? I tried using every book and web example I

Re: Trouble Setting POST_MAX

2005-02-21 Thread Ian Joyce
On Sat, 19 Feb 2005 20:37:17 -0500, jonathan vanasco <[EMAIL PROTECTED]> wrote: > { > my $r = Apache::Request->new(shift, > POST_MAX=> .1 * 1024 * 1024,# in > bytes, so 100K > DISABLE_UPLOADS => 0 >

RE: Trouble Setting POST_MAX

2005-02-21 Thread jonathan vanasco
Author: pileswasp <[EMAIL PROTECTED]> > .1 * 1024 * 1024 = 104857.6 > Perhaps .6 of a byte is difficult for it to cope with? Probably -- but that doesn't seem to be it either. I think maybe there was an issue with my compile ? I tried using every book and web example I could find -- here are

RE: Trouble Setting POST_MAX

2005-02-21 Thread pileswasp
From: jonathan vanasco <[EMAIL PROTECTED]> Date: Sat, 19 Feb 2005 20:37:17 -0500 [...] sub handler { my $r = Apache::Request->new(shift, POST_MAX=> .1 * 1024 * 1024,# in bytes, so 100K DISABLE_UPLOADS => 0