Re: Using $CGI::POST_MAX

2004-10-22 Thread Bill Stephenson
On Oct 21, 2004, at 8:07 PM, Gunnar Hjalmarsson wrote: Bill Stephenson wrote: I'm using this line in my script: $CGI::POST_MAX = $CGI::POST_MAX = 30720; # 30k I tested it to see if it works and it did not process the form and write the data to a file when the data entered exceeded the amount

Re: Using $CGI::POST_MAX

2004-10-22 Thread Bill Stephenson
I've tweaked the code as much as I know how in order to make it work as expected but have not been successful. Is this a bug in CGI.pm or am I missing something simple here? Opps! I hadn't tried everything and I was missing something simple if ($Q-cgi_error()) { print $Q-header;

Re: Using $CGI::POST_MAX

2004-10-22 Thread Gunnar Hjalmarsson
Bill Stephenson wrote: I've tweaked the code as much as I know how in order to make it work as expected but have not been successful. Is this a bug in CGI.pm or am I missing something simple here? Opps! I hadn't tried everything and I was missing something simple if ($Q-cgi_error()) {

Using $CGI::POST_MAX

2004-10-21 Thread Bill Stephenson
I'm using this line in my script: $CGI::POST_MAX = $CGI::POST_MAX = 30720; # 30k I tested it to see if it works and it did not process the form and write the data to a file when the data entered exceeded the amount specified. That's great, but I can't find a way in Lincoln's book to

Re: Using $CGI::POST_MAX

2004-10-21 Thread Gunnar Hjalmarsson
Bill Stephenson wrote: I'm using this line in my script: $CGI::POST_MAX = $CGI::POST_MAX = 30720; # 30k I tested it to see if it works and it did not process the form and write the data to a file when the data entered exceeded the amount specified. That's great, but I can't find a way in