RE: [PHP-WIN] servers in php

2004-03-15 Thread BrokenClock
You may use fork wiht cygPHP, see this recent mail on the mailing-list. > -Message d'origine- > De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Envoyé : lundi 1 mars 2004 13:39 > À : [EMAIL PROTECTED] > Objet : [PHP-WIN] Re: Process Control Functions (PCNTL) > > > Brokenclock wrote on 1/

RE: [PHP-WIN] servers in php

2004-03-14 Thread Svensson, B.A.T. (HKG)
>> And if you don't use fork(), how did you plan to handle the >> port situation, once a process has connected to the server? >I don't know, which is why I asked. The answer is: unless you bifurcate your process, you can't. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP-WIN] servers in php

2004-03-14 Thread Comex
And if you don't use fork(), how did you plan to handle the port situation, once a process has connected to the server? I don't know, which is why I asked. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] servers in php

2004-03-14 Thread Svensson, B.A.T. (HKG)
And if you don't use fork(), how did you plan to handle the port situation, once a process has connected to the server? -Original Message- From: Comex To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: 14-3-2004 1:06 Subject: [PHP-WIN] servers in php I was wondering how to go about making a s

Re: [PHP-WIN] servers in php

2004-03-13 Thread Robert Twitty
Take a look at the socket functions, with special attention to socket_listen() and socket_accept(). AFAIK, this may be a bit beyond the scope of PHP on windows. Even if you successfully call the program from itself, you will not be able to pass the connection to the cloned program. Your server ma