You need to sign in to do that
Don't have an account?

Which directive to set for maximum server timeout?
I've gone through my php.ini and apache.conf files and set all of the timeouts (on my local machine) to be way more than 30 seconds, but I'm still getting the "PHP Fatal error: Maximum execution time of 30 seconds exceeded" error when I run process-intensive scripts. Can anyone tell me which directive I need to set to increase this timeout?
<?php
echo date("H:m:s"), "\n";
set_time_limit(45);
for ($i = 0; $i < 100; $i++)
{
sleep(10);
echo date("H:m:s"),"\n";
}
echo "Done!";
?>