Increase PHP Script Execution Time [duplicate]

Try set_time_limit(0); at the top of your script.

set_time_limit sets the maximum execution time in seconds. If set to zero, no time limit is imposed (see PHP manual).

Leave a Comment