> I have started memcached with > [code] > memcached -d -m 1024 -l 10.0.0.40 -p 11211 -u nobody > [/code]
and your error is > [code] > Memcache::connect() [memcache.connect]: Server 127.0.0.1 (tcp 11211) > failed with: Connection refused (111) > [/code] so already there is a problem. you have the server listening on 10.0.0.40 and you are trying to connect to 127.0.0.1. If you have a specific address you are listening on you need to use that in your php code to connect to, or if you mean to listen on all addresses use -l 0.0.0.0 this of course still doesn't help resolve weather or not you have memcached running. -- Jehiah
