phpmyadmin and memcache

{ Posted on May 13 2011 by lucas }
Tags :
Categories : phpmyadmin

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:

  1. Include this line at the top of the file:
    ini_set(‘session.save_path’, “/tmp/”);
  2. Uncomment line:
    ini_set(‘session.save_handler’, ‘files’);
    about 67.

That’s all folks!!!

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