Fatal error: Maximum execution time of 30 seconds exceeded.

A

Anonymous

Guest
Does anyone know where I can increase the settings to allow more timeout?
 
this is in your php.ini file, don't forget to restart server after modify if php
run as module.

;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

max_execution_time = 30 ; Maximum execution time of each script, in seconds
memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)


Best regards Stanislav
 
kick_tisho said:
this is in your php.ini file, don't forget to restart server after modify if php
run as module.

;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

max_execution_time = 30 ; Maximum execution time of each script, in seconds
memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)


Best regards Stanislav

Thanks Stanislav!
p.s. I don't know what you mean by "...restart.. if run by module"?
 
Pejone said:
if you want to run your script more than 30 seconds use set_time_limit() function

Hey Pejone,
Thanks for the reply. Does this override the setting in the php.ini.
This means it will run for more than 30seconds for the script in question ONLY..right?
 
Back
Top