Możesz to zrobić, ustawiając set_time_limit w kodzie php (ustaw na 0 dla braku limitu)
set_time_limit(0);
Lub zmodyfikuj wartość max_execution_time bezpośrednio w swoim 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
Lub zmienić to za pomocą ini_set()
ini_set('max_execution_time', 120); //120 seconds
ale zauważ, że dla tej trzeciej opcji:
Źródło www.php.net