Re: [PHP] exec timing out, want to leave process running in bg

2001-03-07 Thread Mukul Sabharwal
Oh yeah, we don't wanna get HUPed! --- Christian Reiniger <[EMAIL PROTECTED]> wrote: > On Wednesday 07 March 2001 06:37, you wrote: > > Hi, > > > > Well there are many ways to run a process in the > > background, my favorite way is detaching the > process > > or the program or process from within

Re: [PHP] exec timing out, want to leave process running in bg

2001-03-07 Thread Christian Reiniger
On Wednesday 07 March 2001 06:37, you wrote: > Hi, > > Well there are many ways to run a process in the > background, my favorite way is detaching the process > or the program or process from within, so if it's a c > program pretty easy, but incase you dont have the > source, then you can use this

Re: [PHP] exec timing out, want to leave process running in bg

2001-03-06 Thread Mukul Sabharwal
Hi, Well there are many ways to run a process in the background, my favorite way is detaching the process or the program or process from within, so if it's a c program pretty easy, but incase you dont have the source, then you can use this: exec("mp3123 -y -Z --all 1>/dev/null/ 2>&1 &"); well t

[PHP] exec timing out, want to leave process running in bg

2001-03-06 Thread pkshifted
I'm trying to develop a front-end using php for mpg123 so that various members of my household don't need to access a shell to start/play music. I'm using something similiar to exec('$null'), w/ $null being equal to "mpg123 -y -Z --all >/dev/null/ &". The problem I'm having, is about 5 minutes