ID: 26004 Comment by: shaharjourno at hotmail dot com Reported By: jacknorton101 at hotmail dot com Status: No Feedback Bug Type: *General Issues Operating System: RedHat Linux 9 PHP Version: 4.3.3 New Comment:
Hi I had the same bug i found a solution please check your Post_max_SIZE. there are some problems with some sizes. I managed to create this problem and then solved Here is a link with some examples http://forums.devnetwork.net/viewtopic.php?f=31&t=94754 Hopefully it will help . Previous Comments: ------------------------------------------------------------------------ [2009-01-20 14:31:40] paraporquerias at yahoo dot com My problem is that, in my earlier php instalation, I had register_globals=on, and now, with PHP5, it comes off by default: http://cn.php.net/manual/en/language.variables.external.php My solution was using this line before I need the value of $username $username = echo $_POST['username']; I hope it helps... ------------------------------------------------------------------------ [2008-12-15 02:28:26] ray_linn at hotmail dot com occurs the same issues on apache 2.2.8 + latest php 5.2.8, all of the solution above is useless. ------------------------------------------------------------------------ [2008-09-16 01:58:06] mike dot dygert at adelphia dot net I am having this issue, none of the above worked for me... anybody have other ideas? (IIS 6, PHP 5.2.6) Thanks ------------------------------------------------------------------------ [2008-03-05 14:56:13] schefer at webdessert dot ch To correct my above message: Post the form with method GET does not work, setting the post_max_size in php.ini higher than the size of the uploaded file did the trick. ------------------------------------------------------------------------ [2008-03-05 14:43:40] schefer at webdessert dot ch I have experienced the same problems with PHP 5.2.4 on Windows. The solution was to specify the forms method as GET, and not as POST. It worked as well by not specifying any method, as this will choose GET as the default method. Use it like this: <form action="myFile.php" enctype="multipart/form-data" method="GET"> <input type="hidden" name="foo" value="bar" /> <input type="file" name="file" /> <input type="submit" value="Upload" /> </form> print_r($_GET) results in: Array ( [foo] => bar [file] => abc.zip ) ------------------------------------------------------------------------ The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at http://bugs.php.net/26004 -- Edit this bug report at http://bugs.php.net/?id=26004&edit=1