Page 1 of 1

execution time

Posted: Wed Sep 03, 2003 9:14 am
by yaron
Hello all,
I have this script that suppose to process a lot of data.
evrything is working fine but if the process is longer than 30 secs i get:
execution time of 30 seconds exceeded error!

How can i make the script to run longer (let's say 5 minutes)
Thanks

Posted: Wed Sep 03, 2003 9:24 am
by JayBird
you change the following line in your php.ini

max_execution_time = 30 ; Maximum execution time of each script, in seconds

Mark

Posted: Wed Sep 03, 2003 9:28 am
by yaron
no need
got it
set_time_limit(int);
Thanks