Re: [PHP] locate PID & Kill

2004-08-09 Thread Jason Wong
On Monday 09 August 2004 19:00, Curlys wrote: > it doesn't work , when it is running , errors r bellow > > sh: line 1: kill: r: invalid signal specification Well specify a VALID signal then. This is not a PHP problem. -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software

Re: [PHP] locate PID & Kill

2004-08-09 Thread Curlys
D]> Sent: Monday, August 09, 2004 12:38 PM Subject: Re: [PHP] locate PID & Kill > You could do something like this.. > > $cmd = "kill -r HUP /var/run/abc.pl.pid"; > exec($cmd); > > That should kill it and then restart it. You'll need to change > /var/r

Re: [PHP] locate PID & Kill

2004-08-08 Thread Matthew Runo
You could do something like this.. $cmd = "kill -r HUP /var/run/abc.pl.pid"; exec($cmd); That should kill it and then restart it. You'll need to change /var/run/abc.pl.pid to fit into your system, but the idea of that line is to allow the script to get the proper PID, even if it's not what you e