I would like to change the maximum runtime for a PHP script. In a script, I tried
ini_set("max_execution_time", "1000");
and
set_time_limit(1000);
together and separately.
I also added this line to .htaccess:
php_value max_execution_time 1000
php.ini has safemode, and the Apache server has the AllowOverride All flag. What should I do so that the server can increase the execution time?
Nick Q.
source share