|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-06-10 23:31 UTC] jani@php.net
[2008-06-10 23:52 UTC] rcable at sciotowireless dot net
[2008-06-10 23:53 UTC] rcable at sciotowireless dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 05:00:01 2025 UTC |
Description: ------------ I'm trying to do a file upload in php with a webform. I've set my max filesize to 8192000. I've modified php.ini max_execution_time = 60 max_input_time = 120 memory_limit = 128M post_max_size = 12M upload_max_filesize = 8M I cannot send a file larger than 2M up to the server. And when I run phpinfo() it always shows 2M as the upload_max_filesize. I've also tried ini_set("upload_max_filesize","8192000") to no avail. The files I'm trying to upload are about 3M so I have quite a bit of headroom with that 8192000 value. Reproduce code: --------------- There is no need for source code that I can see as it's a phpinfo() that is showing me where the problem is and no matter what I set upload_max_filesize to, it will not work. None of the solutions on old bug reports have helped, and since this is the latest edition I guess I'm the first one to report that this isn't fixed with the new release.