Bugged enough to post it here: I have a large set of records and I want to increase execution time of PHP for processing these large number of records.
For your php.ini file,
change the following line values:
max_execution_time 30
You can also try increasing the execution runtime by using the ini_set() function.
e.g. ini_set('max_execution_time' '-1');
This would set the maximum execution time to infinity
For your php.ini file,
change the following line values:
max_execution_time 30
You can also try increasing the execution runtime by using the ini_set() function.
e.g.
ini_set('max_execution_time' '-1');
This would set the maximum execution time to infinity