Anda dapat membuatnya dengan mengatur set_time_limit dalam kode php Anda (set ke 0 tanpa batas)
set_time_limit(0);
Atau ubah nilai max_execution_time langsung di 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
Atau mengubahnya dengan ini_set()
ini_set('max_execution_time', 120); //120 seconds
tetapi perhatikan bahwa untuk opsi ke-3 ini :
Sumber www.php.net