|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-07-10 07:54 UTC] tony2001@php.net
[2006-07-18 01:00 UTC] php-bugs at lists dot php dot net
[2006-11-06 17:00 UTC] zavpublic at mac dot com
[2006-12-21 18:02 UTC] marek dot zolkowski at gmail dot com
[2006-12-23 17:17 UTC] ZavPublic at mac dot com
[2006-12-26 00:33 UTC] marek dot zolkowski at gmail dot com
[2007-02-10 22:25 UTC] ilyas at foxplan dot com
[2008-06-13 18:44 UTC] noone at nowhere dot com
[2011-08-10 16:09 UTC] noorsulayman at gmail dot com
[2011-08-10 19:14 UTC] noorsulayman at gmail dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 22 01:00:02 2025 UTC |
Description: ------------ I have changed following in php.ini, Still when I run phpinfo() I get upload_max_filesize as 2M while other two getchanged. upload_max_filesize 2000M post_max_size 2000M memory_limit 2000M I have also tried creating php.ini in same directory as script with above settings. I have also tried creating .htaccess with php_value upload_max_filesize 2000M Still all scrips return 2M even with ini_get. Please check or tell how to change upload_max_filesize Reproduce code: --------------- <?php echo ini_get('upload_max_filesize'); ?> Expected result: ---------------- 2000M Actual result: -------------- 2M