Hi,
I have a php script which has a while(true) loop that runs indefinitely writing data to an output stream.
I want to be able to call this php script and let it run forever, through a browser, without anything timing out. It seems to work right now, except one thing that annoys me. Firebug still shows the request as "loading" (the GET has the load bar next to it) will the server ever timeout the script?
What is the best way to do this?
BTW. it is not really an infinite loop... I use sockets to have other scripts communicate with each other whilst running
... so I can call "stopservice.php" and that script will use sockets within the local server to tell the stream script to stop.