Page 1 of 1
Maximum execution time exceeded
Posted: Fri Oct 11, 2002 8:32 am
by noguru
When I request a certain php page through my browser, I get the following error message after a while:
Fatal error: Maximum execution time of 30 seconds exceeded in /mypath/mypage.php on line 84
Is there a way to change this maximum execution time?
Posted: Fri Oct 11, 2002 8:37 am
by twigletmac
It's in the php.ini
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 30 ; Maximum execution time of each script, in seconds
Mac
Posted: Fri Oct 11, 2002 8:37 am
by volka
in php.ini
max_execution_time = 30 ; Maximum execution time of each script, in seconds
in a script you may set this parameter with
ini_set or even better use
set_time_limit
Posted: Fri Oct 11, 2002 8:38 am
by twigletmac
Too slow

Posted: Fri Oct 11, 2002 8:41 am
by volka
but with extra-informations

Posted: Fri Oct 11, 2002 9:09 am
by noguru
is there a competition going on here??? what's first price?
anyway mac is WAAAYYYY ahead!
thanks guys

Posted: Fri Oct 11, 2002 9:46 am
by volka
haven't noticed? there is always competition.
"ahhh, a new question and I've seen it first - go go go"

Posted: Fri Oct 11, 2002 11:01 am
by twigletmac