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? Quote 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. Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.