Answers for "php increase execution time limit"

PHP
2

php code to increase maximum execution time

ini_set('max_execution_time', '300'); //300 seconds = 5 minutes
ini_set('max_execution_time', '0'); // for infinite time of execution
Posted by: Guest on June-30-2020
1

how to increase maximum execution time of php script

By default, the maximum execution time for PHP scripts is set to 30 seconds. If a script takes more than 30 seconds, PHP stops the script and returns an error.
You can change the script run time by changing the max_execution_time directive in the php.ini file.
When a script is called, set_time_limit function restarts the timeout counter from zero. It means, if default timer is set to 30 sec, 
and 20 sec is specified in function set_time_limit(), then script will run for 45 seconds. If 0sec is specified in this function, script takes unlimited time.

Set Max_Execution_Time globally in php. ini
1. Locate and open your PHP build folder.
2. Find the php.ini file and open it.
3. Find the following line in the text configuration file – max_execution_time=30.
4. Change the value 30 to the value of choice, Remember, this value is in seconds.
5. Save & Close.
  
/*
I hope it will help you.
Namaste
Stay Home Stay Safe
*/
Posted by: Guest on May-21-2020

Code answers related to "php increase execution time limit"

Browse Popular Code Answers by Language