Re: [PHP] Running script produces no output

2003-08-07 Thread Chris Blake
Hi Jacob, The script does indeed run, and I have since added the following : $shell_return = shell_exec("./info.sh" . " 2>&1"); This pointed out to me that the error was in the script itself, and not the php... I have now sorted this out so it works as expected... Thanks for your time in assis

Re: [PHP] Running script produces no output

2003-08-05 Thread Jacob Vennervald Madsen
Does the script work when you run it by hand? Try to insert an echo "TESTER" in the top the shell script to make sure something is sent to stdout. And then check in your php script that you receive the message. Best regards, Jacob Vennervald On Wed, 2003-08-06 at 08:38, Chris Blake wrote: > Gree