Re: [PHP] PHP Threading on Windows

2012-09-14 Thread Adam Richardson
On Fri, Sep 14, 2012 at 9:40 PM, Joe Watkins wrote: > https://github.com/krakjoe/pthreads > > Windows Download on downloads page, it's a couple of days behind. Keep > watching ... enough to get you started ... That's pretty slick, Joe. Nice work! Adam -- Nephtali: A simple, flexible, fast, an

Re: [PHP] PHP Threading on Windows

2012-09-14 Thread Joe Watkins
On 14/09/2012 04:42, tamouse mailing lists wrote: On Thu, Sep 13, 2012 at 9:32 PM, admin wrote: It has been suggested: That because php does not support PCNTL threading on Windows that multiple services of php are an alternative. I am interested in this theory, if anyone is currently

Re: [PHP] PHP Threading on Windows

2012-09-14 Thread Joe Watkins
On 14/09/2012 04:42, tamouse mailing lists wrote: On Thu, Sep 13, 2012 at 9:32 PM, admin wrote: It has been suggested: That because php does not support PCNTL threading on Windows that multiple services of php are an alternative. I am interested in this theory, if anyone is currently

Re: [PHP] How to limit source IP in PHP

2012-09-14 Thread Stuart Dallas
Sorry for the top post but I don't have my laptop with me and, well frankly I'm too tired to be arsed! I think the confusion is coming from the word bind. I don't think man people at aware of he difference between binding a socket and having it listen on the port to which it's bound. People... wh

Re: [PHP] How to limit source IP in PHP

2012-09-14 Thread Tonix (Antonio Nati)
Il 14/09/2012 21:19, Jim Lucas ha scritto: On 09/13/2012 04:15 PM, Tonix (Antonio Nati) wrote: Jim, sorry but you did not read carefully my posts. Since the fist post, I ALWAYS spoke about connections a PHP script may open autonomously (what you name second connection). I'm never speaking abo

Re: [PHP] How to limit source IP in PHP

2012-09-14 Thread Jim Lucas
On 09/13/2012 04:15 PM, Tonix (Antonio Nati) wrote: Jim, sorry but you did not read carefully my posts. Since the fist post, I ALWAYS spoke about connections a PHP script may open autonomously (what you name second connection). I'm never speaking about listening/intercepting/using the original

Re: [PHP] How to limit source IP in PHP

2012-09-14 Thread Jim Lucas
On 09/12/2012 08:21 AM, Daniel Brown wrote: On Wed, Sep 12, 2012 at 10:18 AM, Tonix (Antonio Nati) wrote: Is PHP able to 'force' binding IP? I hoped there was an external directive I did not see, but probably this is a PHP lack. Not at all. Essentially, PHP is an interface to underlyi

Re: [PHP] Programmers and developers needed

2012-09-14 Thread Tim Dunphy
On Fri, Sep 14, 2012 at 3:00 PM, Robert Cummings wrote: > On 12-09-13 06:10 PM, Ashley Sheridan wrote: > >> On Thu, 2012-09-13 at 16:48 -0400, Tedd Sperling wrote: >> >> On Sep 13, 2012, at 3:45 AM, agbo onyador wrote: >>> >>> Hello there! We are looking for programmers and developers to create

Re: [PHP] Re: How to limit source IP in PHP

2012-09-14 Thread Curtis Maurand
On 9/14/2012 7:20 AM, Ian wrote: On 12/09/2012 14:53, Tonix (Antonio Nati) wrote: Is there a way to force a PHP script to bind to a prefixed IP? Actually, while you can assign more IPs to Apache for listening, assigning domains to specific IPs, it looks like any PHP script can freely choose whi

Re: [PHP] Programmers and developers needed

2012-09-14 Thread Robert Cummings
On 12-09-13 06:10 PM, Ashley Sheridan wrote: On Thu, 2012-09-13 at 16:48 -0400, Tedd Sperling wrote: On Sep 13, 2012, at 3:45 AM, agbo onyador wrote: Hello there! We are looking for programmers and developers to create a world wide system. Your comments are welcome. Wow! I'm looking for w

[PHP] How to track for Allowed memory size ?

2012-09-14 Thread Ivan Dimitrov
Hello, is there a way how to track for allowed memory size on ? I receive this error in one class that process sql querys. I want to check somehow when query is processed do php return this error and if this is happened to log sql query in file to can I optimize it latter. I.D. -- PHP Genera

[PHP] Re: How to limit source IP in PHP

2012-09-14 Thread Ian
On 12/09/2012 14:53, Tonix (Antonio Nati) wrote: > > Is there a way to force a PHP script to bind to a prefixed IP? > > Actually, while you can assign more IPs to Apache for listening, > assigning domains to specific IPs, it looks like any PHP script can > freely choose which IP to bind. Instead

Re: [PHP] Re: Programmers and developers needed

2012-09-14 Thread Serge Fonville
2012/9/14 Kiek Bailey > On 9/13/2012 7:39 PM, Jim Giner wrote: > >> On 9/13/2012 3:45 AM, agbo onyador wrote: >> >>> Hello there! We are looking for programmers and developers to create a >>> world wide system. Your comments are welcome. >>> >>> really?? A "world wide system"? And this is how y

Re: [PHP] PHP array unions

2012-09-14 Thread Adam Richardson
On Fri, Sep 14, 2012 at 2:30 AM, Matijn Woudt wrote: > > It doesn't need to be clunky.. just use array_flip and you've got the old > array again.. > Well, array_flip has it's own potential issues (duplicate values are lost, so my example of using zeros would not work.) I suppose I could duplicate