I have a php file 'run.php' which I'm running from the terminal. Within this file I have the following lines:

exec("open-crawlers $port 2>&1",$out,$code); echo 'hello';

The problem that I'm having is that the terminal hangs after executing the 'exec' command; the program doesn't reach the second line.

link|improve this question

66% accept rate
What happens when you execute it on the command line yourself? – Rijk Sep 14 '11 at 10:55
feedback

1 Answer

up vote 7 down vote accepted

Try this:

exec("nohup open-crawlers $port >> /tmp/log_file.log 2>&1 &");
echo 'hello';
link|improve this answer
1  
Thanks. Your answer inspired my solution,this command worked for me: exec("open-crawlers $port >> error.txt 2>&1 &",$out,$code); – Anub1s Sep 14 '11 at 11:23
You are very welcome – Book Of Zeus Sep 14 '11 at 11:28
feedback

Your Answer

 
or
required, but never shown

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