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 ? 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. 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
Archived
This topic is now archived and is closed to further replies.