RE: [PHP] Execing problems

2002-02-07 Thread Martin Towell

does using system() work?
what about back-ticks? - `funky script stuff here`;

-Original Message-
From: Jason Rennie [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 08, 2002 3:14 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Execing problems


Hi all,

I have a seperate perl script that I need to start running from a php
script. The script does a fork into the backgroup and exits.

when i do an

exec(funky script stuff here);

The page just hangs trying to load again, apparently after I call the
exec.

I've also tried 

exec(script stuff ) 

but it does the same thing.

Any ideas anybody ?

Jason

-- 
Hofstadter's Law : It always takes longer than you expect, even when you
take Hofstadter's Law into account.


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



RE: [PHP] Execing problems

2002-02-07 Thread Jason Rennie

 does using system() work?
 what about back-ticks? - `funky script stuff here`;

I'll give it a go, i hadn't tried that

Although I thought system would return the output. I was using exec
because it didn't (oops I think I forgot to mention that.)

Jason


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