I have a php script that will run via cron
*/5 * * * * /var/www/scripts/run.php
run.php
#!/usr/bin/php
<?php
#stop server
exec("python /home/server.py stop");
#execute some php code here
#start server again
exec("python server.py start 2>&1 &");
?>
The last line causes the problem.
When I run the php script directly from the terminal
/var/www/scripts/run.php
It starts the server but the terminal hangs
When the script is run through cron
I see in ps the below ven though the script is done
root 23510 0.5 1.3 280064 14228 ? Ss 10:32 0:00 /usr/bin/php /var/www/scripts/run.php
Is there a way to do it?
Thanks
www. Move it to a directory not visible to the web. – NADH Apr 28 '12 at 10:24