Phpmyadmin doesn't work if session.save_handler set to memcache. as soon as I login I get your session has expired, please login again
php.ini
session.save_handler = memcache
session.save_path = "tcp://localhost:11211"
I tried the latest version available from http://www.phpmyadmin.net/home_page/downloads.php
I am having the same problem here... After I enabled memcache session handling in PHP, I can't connect anymore to phpmyadmin. It's due to incompatibility between phpmyadmin own session handling mechanism and memcache.
You can disable memcache session handling by putting at the top of your phpmyadmin config.inc.php
:
ini_set('session.save_path', '');
ini_set('session.save_handler', 'files');
cf. http://thinkfuturetechs.blogspot.fr/2014/06/phpmyadmin-and-memcache.html
This appears to have been a server misconfiguration issue; from the bug report on the phpMyAdmin issue tracker a reporter wrote that memcached was missing. Check that memcached is properly installed and configured. You can see the bug report at https://github.com/phpmyadmin/phpmyadmin/issues/10464
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With