maliary Posted June 27, 2009 Share Posted June 27, 2009 When should I reset max_execution_time in php.ini ? Its normally set to 30secs, is this the optimum time limit, what does it mean for an execution that takes longer than this ? At what situation can this time limit of 30secs be exceeded ? Quote Link to comment https://forums.phpfreaks.com/topic/163891-when-should-i-reset-max_execution_time-in-phpini/ Share on other sites More sharing options...
Alex Posted June 27, 2009 Share Posted June 27, 2009 30 seconds is a pretty good standard. So that's a good thing for your php.ini value. Sometimes you'll have a script that takes more than 30 seconds to run; if you know something is going to pass that limit you can just use set_time_limit() within that specific file. Quote Link to comment https://forums.phpfreaks.com/topic/163891-when-should-i-reset-max_execution_time-in-phpini/#findComment-864698 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.