Forum Moderators: coopster
I'm working on a web services script that has to process allot of xml data. It often times out while it is running.
What can I do to get around the standard 30 second php execution limit?
Thanks! Erik
ini_set('max_execution_time', 'sometime');
see ini_set [us2.php.net]
-sned
What if it is a shared host in php safe mode?
@set_time_limit(60);
The default timeout is 30 seconds, and if you set 60, the script will run for 90 seconds.
default_time + seconds