08-15-2008, 05:39 PM
|
#2 (permalink)
|
|
is cute and cuddly
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
|
PHP: ini_set - Manual
For most INI settings. However the two you specifically want to set need to be set from within either PHPs php.ini, or Apache's httpd.conf, OR .htaccess if your host permits. The syntax for setting PHP ini directives within .htaccess is like so;
Code:
# php_value ini_setting "new_value"
# for example:
php_value post_max_size "15M"
-m
|
|
|
|