|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-05-13 17:38 UTC] sniper@php.net
[2003-05-14 11:12 UTC] ashpool7 at yahoo dot com
[2003-05-14 12:19 UTC] ashpool7 at yahoo dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 26 02:00:02 2025 UTC |
* Windows NT SP6a with all the patches * Apache 1.3.27, PHP 4.3.1 as a module. Mostly "reccomended" php.ini settings. * Using the zip binary. When using the code below, I get the "no filename" message, indicating that the POST variables have disappeared when the textarea is filled with over (aproximately) 1024K worth of data. To reproduce, I used a single character to fill the textarea. The post_max_size has not been altered from "8M", neither have any other such variables. No LimitRequest* variables have been set in Apache's httpd.conf. test.html------------------------------------------------ <html> <body> <form method="POST" action="bug.php"> <input type="hidden" name="filename" value="the file name"> <textarea rows="20" cols="80" name="contents"> </textarea><br> <input type="submit" value="Save"> </form> </body></html> bug.php-------------------------------------------------- <? if ( ! empty($_POST["filename"]) ) { reportError("No error"); } else { reportError("No filename"); } function reportError($err_str) { if ($err_str == "" ) $err_str = "Unspecified"; echo "<html><body>\n"; echo "<h3>$err_str</h3>\n"; echo "</body></html>\n"; } ?> --------------------------------------------------