Brian Dunning wrote:
If I do this:

ini_set('upload_max_filesize', 30720);
echo ini_get('upload_max_filesize');

it returns 2M. Why is it not accepting the ini_set? The server is Windows, PHP 5.2.

probably because upload_max_filesize is PHP_INI_PERDIR not PHP_INI_ALL

use:
http://us.php.net/manual/en/configuration.changes.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to