Posted by J.O. Aho on 05/06/07 16:20
ashore wrote:
> Hey, thanks. I added a sleep(25) call, same results. ????
In your php.ini you have a max_execution_time setting, by default php will be
run in 30 sec, if it takes longer the script will be terminated. Using sleep()
will just make your script will have time to do even less.
You need to extend the max_execution_time or make the exec() to start the CLI
program in the background (I guess that DOS that microsoft bought once in the
time don't support to start things in the background, so this option is out of
question).
--
//Aho
[Back to original message]
|