You are here:
» PHP Question
PHP Question
This Comment will be submitted for moderation and will not be accessible to other users until it has been approved.
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.

1 year 41 weeks ago
Tags:
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
Post Comment