I’m working on a project right now that uses a PHP crontab to run a heavy script, and the problem I faced was the server kept timing out because by default PHP has a time limit for script execution.
There’s an easy way around this by adding the following line of code to the top of your php code. It simply overrides the maximum execution time for the script.
ini_set('max_execution_time', 600); //600 seconds, you can change this to what ever you like
This entry was posted in PHP, Tutorials and tagged PHP, Tutorials. Bookmark the permalink.
I like that you are sharing every trick, every helpful code and etc.. That is good
Thanks for it.
Your trick also possible with line at .htaccess
php_value max_execution_time 600
Also note that your server admin can disable this ability, so you’ll want to check if it works before relying upon it.
Thank you very much!!! Keep up the good work!!!
Subscribe to all the Papermashup Tutorials and articles straight to your RSS reader.
Sign up and get all the Papermashup tutorials straight to your inbox.
Follow us on Twitter and get in-stream messages
3 discussions around Increase a PHP scripts execution time limit