Changing php.ini Settings via ini_set on Hosting
On virtual hosting, you can also
change the settings of php.ini
using the ini_set function.
Let's do it:
<?php
ini_set('memory_limit', '64M');
?>
Let's check the Master Value and Local value:
<?php
phpinfo();
?>
Using the described method, change the
max_execution_time setting.