How to setup phpMyAdmin to use cookie authentication

This guide will describe how to setup phpMyAdmin to use a cookie based login system.
The advantage of the cookie based logins is that you can get an exact mysql error as to why you can't login (if you can't login).

Edit:
/var/www/html/phpMyAdmin/config.inc.php

Change:

$cfg['blowfish_secret'] = '';

to

$cfg['blowfish_secret'] = 'anyrandomtextyouwant';


and change:

$cfg['Servers'][$i]['auth_type']     = 'http';    // Authentication method (config, http or cookie based)?

to:

$cfg['Servers'][$i]['auth_type']     = 'cookie';    // Authentication method (config, http or cookie based)?

Close all browsers and try to connect again.


Was this article helpful?

mood_bad Dislike 0
mood Like 0
visibility Views: 6707