Php ini_set () changes not accepted in safe mode

I wanted to turn off output buffering. He currently shows no value

for local and presenter. I run ini_set('output_buffering',4092);

and no changes to phpinfo()

. Safe Mode is disabled.

What else do you need to check?

+3


source to share


1 answer


output_buffering

can only be installed via PHP_INI_PERDIR

, which according to the documentation :

The entry can be set in php.ini, .htaccess, httpd.conf or .user.ini (since PHP 5.3)



Only PHP_INI_ALL

and PHP_INI_USER

allow you to set a directive in a PHP file.

+12


source







All Articles