I think there are tons of similar posts but I haven't yet found a solution after searching around.

Basically, I'm trying to run two scripts in the background. When I run them in the commandline, I see after calling my first script

/usr/bin/nohup php script.php > nohupoutput.log & echo $!

(I've tried ...script.php > /dev/null & with the same result) I get:

/usr/bin/nohup: ignoring input and redirecting stderr to stdout

which I ignore and run the second one. I noticed that it seemed to be hanging there, and pressing Enter brought me back to machine:~folder>

   /usr/bin/nohup php script2.php > nohupoutput.log & echo $!

Both scripts work. I tried to then convert this to a shell_exec command and nothing seems to work. I am liable to suspect that the ignoring input bit is causing difficulties, but I'm not sure. Regardless, the following does not work. It just hangs in the browser.

$output = shell_exec('/usr/bin/nohup php script.php > /dev/null &');
$output = shell_exec('/usr/bin/nohup php script2.php > /dev/null &');

Any help would be greatly appreciated.

link|improve this question

feedback

2 Answers

try $output = shell_exec('/usr/bin/nohup php script.php >/dev/null 2>&1 &');

or

exec('/usr/bin/nohup php script.php >/dev/null 2>&1 &');

link|improve this answer
I'm getting a Ambiguous output redirect when I try both on the command line. – Rio Feb 8 '11 at 7:34
which os are you using, and php version? this is a odd one. – Dagon Feb 8 '11 at 20:22
feedback

This is because you are doing redirects with the wrong syntax in the shell that php uses

to do the style you are using you need to be in bash shell, however I do not know how to make php do that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.