Hi!
Show us your test code?
/etc/apache2/httpd.conf :
php_admin_value memory_limit 3145728

iniset_test.php :
<?php

$old = ini_set("memory_limit", 20971520);

echo "old: ".$old;

$new = ini_get("memory_limit");

echo "<br>new: ".$new;

?>

The result is the following:
old: 3145728
new: 20971520

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

Reply via email to