Re: raise POST_MAX after instantiation

2006-10-19 Thread Jonathan
that this was impossiblein any event, after parse is called -- either explicitly or implicitly by accessing param/args -- i think it may be impossible to make a new apache2::request object that is tied to the apache2:requestrec , or raise/lower the post_max/readlimitfor now, i've got an array

Re: Setting new POST_MAX or MAX_BODY

2006-09-14 Thread Boysenberry Payne
, POST_MAX = 5, MAX_BODY = 5 ); I must be going about this the wrong way. Any suggestions what the right way is? Thanks, Boysenberry boysenberrys.com | habitatlife.com | selfgnosis.com

Setting new POST_MAX or MAX_BODY

2006-09-12 Thread Boysenberry Payne
( $r, POST_MAX = "5", MAX_BODY = "5" );}1;What am I doing wrong? Thanks, Boysenberry boysenberrys.com | habitatlife.com | selfgnosis.com

Re: POST_MAX

2006-02-13 Thread Jonathan Vanasco
.' ); return; } matching against a error text message is pretty bad, IMO, and makes me worry what happens if someone changes the error message or if there are multiple errors. On Feb 10, 2006, at 10:50 AM, Jonathan wrote: how do i catch the error when POST_MAX has been passed

Re: POST_MAX

2006-02-13 Thread Joe Schaefer
Jonathan Vanasco [EMAIL PROTECTED] writes: Anyone? This is killing me. The only thing I've been able to figure out is this: my $error = $apacheRequest-body_status(); if ( $error eq 'Exceeds configured maximum limit' ) That looks ok to me for now; but what we really need to do