in reply to Beating the system
There is a way to limit the size of posts when using CGI.pm. There is a variable called $CGI::POST_MAX that contains the maximun size of posts. This certainly affects file uploads.
You can find out what the limit is on your system by using this
use CGI; print $CGI::POST_MAX;
If this prints a negative value then there isn't a limit.
To find out more look at perldoc CGI.
--blm-- If you don't like this post can you please /msg me
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Beating the system
by mikeirw (Pilgrim) on Sep 29, 2002 at 15:29 UTC | |
by diotalevi (Canon) on Sep 29, 2002 at 16:00 UTC | |
by blm (Hermit) on Sep 29, 2002 at 15:35 UTC |