I have a php script which needs to run in the background. Currently on my dev box I am running
shell_exec("php5-cgi <path>");
It works fine. Although, when I pushed my code onto a dedicated phpfog cloud, it seem that the script is not being called. I am unable to find out where the issue is. Is it that exec_shell is not working or php5-cgi command does not exist.
How can I understand better what is going on ?