I'm using the following website to help me with background processes in PHP - http://nsaunders.wordpress.com/2007/01/12/running-a-background-process-in-php/
My code is basically the same except my shell_exec method looks like this -
nohup php -f /my/path/to/import_products.php 2 > /dev/null 2> /dev/null & echo $!
The PHP script it's executing runs just fine and the products are imported, but when I add a sleep(10) to import_products.php the while(is_process_running($ps)) only loops once and exits.
It seems like the command shell_exec is executing is completing immediately instead of waiting for 10 seconds (from the sleep(10)).
Any ideas why this might be?
Edit
I guess my question really is "Why isn't the process waiting for the PHP script to exit before it stops showing up in ps?" - Surely as the PHP script is sleeping for 10 seconds ps $pid should show that process for a minimum of 10 seconds?
sleepis dependent onis_process_runningwhich is in awhile loopmost time except it is avery long process.. it would only run once then terminate – Baba Apr 26 '12 at 9:10hmmsearch ...– Sam Apr 26 '12 at 9:15shell_exec()... why? Also, are you trying to pass an argument of2to the PHP script, or is that supposed to be part of the output redirection? – DaveRandom Apr 26 '12 at 9:18