up vote 3 down vote favorite
share [g+] share [fb]

I'm using PHP 5.3.0 and have encountered something that might be a bug (in which case I'll report it) or might be me - so I'm asking to make sure.

When running this code:

<?php
ini_set('upload_max_filesize', '10M');
echo ini_get('upload_max_filesize'), ", " , ini_get('post_max_size')

I end up with:

2M, 8M

This is despite my php.ini setting these higher:

upload_max_filesize = 10M
post_max_size = 10M

(occuring only once)

Because the error occurs after setting the value as well as it being set in php.ini I'm inclined to think it's a bug. Can anyone confirm or point me where I'm going wrong?

Update: Looks like restarting Apache fixed this - I always thought it didn't need to be restarted if you changed php.ini.

link|improve this question

3  
"I always thought it didn't need to be restarted if you changed php.ini." PHP CLI picks up changes immediately, because it parses php.ini with every invocation. mod_php parses php.ini once -- when apache starts up. – Frank Farmer Jul 14 '09 at 2:32
I had the same problem recently. upload_max_filesize wouldn't get into effect without restarting Apache. I'm on a PHP 5.2.9. After the restart everything is working okay. – Haluk Feb 25 '10 at 8:37
feedback

3 Answers

up vote 7 down vote accepted

You can't use shorthand notation to set configuration values outside of PHP.ini. I assume it's falling back to 2MB as the compiled default when confronted with a bad value.

On the other hand, I didn't think upload_max_filesize could be set using ini_set(); the list at http://www.php.net/manual/en/ini.list.php suggests it's a PHP.ini-only setting.

link|improve this answer
You think right! You can't set upload_max_filesize using ini_set() because upload_max_filesize is a PHP_INI_PERDIR type that means changeable only via: php.ini, .htaccess or httpd.conf as stated at: php.net/manual/en/configuration.changes.modes.php – Marco Demaio Feb 12 '10 at 12:03
Actually, you can use shorthand notation outside of PHP.ini; you can use it in .htaccess and also with ini_set. Maybe not in all versions, though. – Protector one Apr 13 '11 at 21:08
feedback

Are you using a shared hosting provider? It could be master settings overriding anything you're trying to change. Have you tried adding those into your .htaccess?

php_value upload_max_filesize 10M
php_value post_max_size 10M
link|improve this answer
No, this is my own Apache/PHP instance on my machine (which is Windows if it's relevant). I'll try adding those to the Apache config. – Ross Jul 13 '09 at 22:28
1  
Update: This does affect it (changes them to 10) so this method works. I'm still quite confused as to why it's not working in php.ini or using ini_set. – Ross Jul 13 '09 at 22:30
+1 this is definitely the way to go if you can't get to php.ini - thank you very much. – Alex Coplan Dec 29 '11 at 13:16
feedback

This can also be controlled with the apache configuration. Check the httpd.conf and/or .htaccess for something like the following:

php_value upload_max_filesize 10M
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.