|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-04-26 07:27 UTC] tomas at tomas-muller dot net
[2007-05-14 08:24 UTC] gopalv82 at yahoo dot com
[2007-07-12 10:51 UTC] Stefan dot Rothenhofer at tilllate dot com
[2007-09-06 11:18 UTC] hans at velum dot net
[2007-10-11 03:47 UTC] admin at litecat dot com
[2007-10-29 13:26 UTC] hans at velum dot net
[2007-11-08 05:28 UTC] phofstetter at sensational dot ch
[2007-12-03 04:00 UTC] xellzhang at gmail dot com
[2007-12-08 15:27 UTC] thomas at partyflock dot nl
[2008-04-08 13:58 UTC] jhibbard at hsr dot com
[2008-04-08 14:02 UTC] jhibbard at hsr dot com
[2008-07-06 21:36 UTC] gavinmroy at gmail dot com
[2008-08-16 09:09 UTC] tomas at tomas-muller dot net
[2008-08-25 15:33 UTC] torben dot sorensen at gmail dot com
[2008-08-25 18:47 UTC] tomas at tomas-muller dot net
[2008-08-27 14:33 UTC] shire@php.net
[2008-09-07 01:10 UTC] shire@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 20 02:00:01 2025 UTC |
Description: ------------ Upgrading to APC 3.0.13 (3.0.14 same effect) i found out that all my php scripts doing form processing (with enctype="multipart/form-data" because of file uploading) were not able to get posted values anymore, except for the uploaded file itself which is working fine. keys are set but values are empty. I had rfc1867 on because i wanted to try the upload progress bar trick. I downgraded back to 3.0.12 and all is fine. A friend of mine is running 3.0.13 with rfc1867 = off and it's doing good, so i guess the problem is related with rfc1867 itself. Reproduce code: --------------- --- /upload.html <form action="/upload.php" method="post" enctype="multipart/form-data" /> <input type="file" name="myfile" /> <input type="hidden" name="forum_id" value="123" /> <input type="submit" value="upload" /> </form> --- /upload.php <?php print_r($_POST); Expected result: ---------------- Array ( [forum_id] => 123 ) Actual result: -------------- Array ( [forum_id] => )