Je kunt het maken door set_time_limit in je php-code in te stellen (ingesteld op 0 voor geen limiet)
set_time_limit(0);
Of het wijzigen van de waarde van max_execution_time rechtstreeks in uw php.ini
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
; Maximum execution time of each script, in seconds
; http://php.net/max-execution-time
; Note: This directive is hardcoded to 0 for the CLI SAPI
max_execution_time = 120
Of verander het met ini_set()
ini_set('max_execution_time', 120); //120 seconds
maar merk op dat voor deze 3e optie:
Bron www.php.net