bobleny Posted July 10, 2006 Share Posted July 10, 2006 How do I keep php from timing out after the default 60 seconds while running a long php script? Link to comment https://forums.phpfreaks.com/topic/14206-how-do-i-keep-php-from-timing-out-after-the-default-60-seconds/ Share on other sites More sharing options...
willfitch Posted July 10, 2006 Share Posted July 10, 2006 PHP.inimax_execution_time=0 This will allow unlimited execution time. If you have permissions, you can also add set_time_limit(0) to allow unlimited time. Link to comment https://forums.phpfreaks.com/topic/14206-how-do-i-keep-php-from-timing-out-after-the-default-60-seconds/#findComment-55706 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.