[PHP] Re: bread and buytter php

2011-02-03 Thread David Robley
Kirk Bailey wrote: > Where is a good place for bread and butter day in day out routinely > needed functionality in php? > Content management system? Framework? PEAR? Write your own library/classes? Cheers -- David Robley Iraqi Bingo B-52..F-16..A-10.. F-18..F-117..B-2 Today is Setting Orange

Re: [PHP] bread and buytter php

2011-02-03 Thread Paul M Foster
On Thu, Feb 03, 2011 at 10:47:08PM -0500, Kirk Bailey wrote: > Where is a good place for bread and butter day in day out routinely > needed functionality in php? I reeeally think you're going to have to be a little more specific. Paul -- Paul M. Foster http://noferblatz.com -- PHP General M

[PHP] bread and buytter php

2011-02-03 Thread Kirk Bailey
Where is a good place for bread and butter day in day out routinely needed functionality in php? -- end Very Truly yours, - Kirk Bailey, Largo Florida kniht +-+ | BOX |

Re: [PHP] Memcache problems

2011-02-03 Thread Alex Nikitin
Short of some process going crazy, which you should check for, some psing, top and netstat, i cant think of any reason you should ever get a connection drop, short of a hardware failure (memory perhaps), or an experimental kernel settings or modules or something... i cant think of any way that a co

Re: [PHP] Memcache problems

2011-02-03 Thread Jostein Eriksen
On 02/03/2011 10:49 PM, Adam Richardson wrote: On Thu, Feb 3, 2011 at 4:19 PM, Jostein Eriksen wrote: Both php and memcached is running on the same server. memcached version 1.2.2 php5-memcache version 2.2.0 php version 5.2.4 here is a snippet from my code that may be of interest $cfg['server

Re: [PHP] Memcache problems

2011-02-03 Thread Adam Richardson
On Thu, Feb 3, 2011 at 4:19 PM, Jostein Eriksen wrote: > Both php and memcached is running on the same server. > memcached version 1.2.2 > php5-memcache version 2.2.0 > php version 5.2.4 > > here is a snippet from my code that may be of interest > $cfg['serverList'] = array('127.0.0.1', 11211, 1,

Re: [PHP] Memcache problems

2011-02-03 Thread Jostein Eriksen
Both php and memcached is running on the same server. memcached version 1.2.2 php5-memcache version 2.2.0 php version 5.2.4 here is a snippet from my code that may be of interest $cfg['serverList'] = array('127.0.0.1', 11211, 1, 1); ... $this->memcache = new Memcache(); foreach($cfg['serverList']

Re: [PHP] Memcache problems

2011-02-03 Thread Alex Nikitin
There could be many a reasons for this, and it really depends on your setup. For example, is php and memcache on the same server, if they are not what is the network topology like, it could be a piece of hardware starting to malfunction, it could be an issue with the networking driver, on the other

[PHP] Memcache problems

2011-02-03 Thread Jostein Eriksen
Hi, I've been having some problems with memcache lately. It seems to me that php is dropping connection to the memcache server mid way through the scripts. I've sat the failure_callback to log failures. And I'm getting a lot of them. Several every minute. I'm quite stuck now and realy dont kn