in reply to file upload, max_post, and cgi-error
From the docs (see Avoiding Denial of Service Attacks):
$uploaded_file = param('upload'); if (!$uploaded_file && cgi_error()) { print header(-status=>cgi_error()); # <== change this line exit 0; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: file upload, max_post, and cgi-error
by nponte (Initiate) on Oct 04, 2004 at 15:00 UTC | |
by Your Mother (Archbishop) on Oct 04, 2004 at 15:27 UTC |