PHP Can't find save handler memcache
问题 I'm busting my brains over this issue (it should be straightforward), but can't seem to find a solution so hopefully one of you can help me. I'm trying to store sessions using php's memcache extension. I'm running MAMP and have installed the extension correctly (I think...it shows up when I do phpinfo), am running the daemon and can connect to it through php, using something like this: $memcache = new Memcache; $memcache->connect('localhost', 11211) or die ("Could not connect"); So I KNOW