memcached append() php ubuntu - bad protocol
- by awongh
I am running ubuntu gutsy(7.1) , php5 and I am trying to get memcached running locally. I installed everything as per the docs: memcached daemon, php PECL extension, libevent, etc.
But now I can only run half of the example script for memcached append():
<?php
$m = new Memcached();
$m->addServer('localhost', 11211);…