phpmyadmin and memcache
{ Posted on May 13 2011 by lucas }
They don’t get along
As far as I know and read, phpmyadmin has to work with sessions in files and it is not developed to work with memcache.
So to avoid problems like:
- Session errors
- Connection to memcache
- database user can’t autheticate
you have to change this lines in libraries/session.inc.php:
- Include this line at the top of the file:
ini_set(‘session.save_path’, “/tmp/”); - Uncomment line:
ini_set(‘session.save_handler’, ‘files’);about 67.
That’s all folks!!!

Sorry, comments for this entry are closed at this time.