here's a grep of ps aux on my dev server
498 1575 0.0 0.0 330852 152 ? Ssl Jun14 2:58 memcached -d -p 11211 -u memcached -m 64 -c 1024 -P /var/run/memcached/memcached.pid
498 6446 0.0 0.0 330852 152 ? Ssl Jul23 1:09 memcached -d -p 11212 -u memcached -m 64 -c 1024 -P /var/run/memcached-2/memcached-2.pid
So I can see that it is there, I'm using zend framework with 'Memcached' backend, which is using a the extension_loaded('memcache') to see if it is installed.
Is this because they installed memcached2? but if so why would the extension loaded function fail? I'm not much of a server junkie, but my guess is something went wrong in the installation process?
TL;DR;
Why does extension_loaded('memcache') return false, when memcached is running on the server?