How can I set the php.ini values from the .htaccess?
php_value post_max_size "50M" not working.
Also these don't work either.
<IfModule mod_php4.c>
php_flag post_max_size 50
php_value post_max_size 50
</IfModule>
or
set_ini('post_max_size', 50);
Thanks
Dino
php_value post_max_size "50M" not working.
Also these don't work either.
<IfModule mod_php4.c>
php_flag post_max_size 50
php_value post_max_size 50
</IfModule>
or
set_ini('post_max_size', 50);
Thanks
Dino
Comment