[PHP] shell_exec() or passthru()

2002-03-23 Thread Douglas

Hi,

I have a bash script I need to run.
I have tried all the various program execution commands.

My script never completes. It only get 1/4 of the way through.
I have tried running the script in the background.

Any ideas?


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] shell_exec() or passthru()

2002-03-23 Thread Douglas

Hi,

I have a bash script I need to run.
I have tried all the various program execution commands.

My script never completes. It only get 1/4 of the way through.
I have tried running the script in the background.

Any ideas?


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] shell_exec() or passthru()

2002-03-23 Thread Andrew Lopucki

You may need to redirect output (both stderr and stdout) atleast that helped 
me with a similar problem.  My system is Linux.


On Saturday 23 March 2002 11:06 pm, Douglas wrote:
 Hi,

 I have a bash script I need to run.
 I have tried all the various program execution commands.

 My script never completes. It only get 1/4 of the way through.
 I have tried running the script in the background.

 Any ideas?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] shell_exec() or passthru()

2002-03-23 Thread Andrew Lopucki

And by redirect I mean to /dev/null possibly if you don't want to capture 
output.

On Saturday 23 March 2002 03:52 pm, Douglas wrote:
 Hi,

 I have a bash script I need to run.
 I have tried all the various program execution commands.

 My script never completes. It only get 1/4 of the way through.
 I have tried running the script in the background.

 Any ideas?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php