
Originally Posted by
idv
In the config.inc.php file I have set the host, username and password
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysqli if your server has it */
$cfg['Servers'][$i]['extension'] = 'mysqli';
/* User for advanced features */
// $cfg['Servers'][$i]['controluser'] = 'pma';
// $cfg['Servers'][$i]['controlpass'] = 'password';
as you suggested and I now get
Error
#1045 - Access denied for user 'pma'@'localhost' (using password: YES)
when trying to log in using 'pma' for the username field and 'password' for the password field as I set in the config.inc.php file above.
Or does this have to match the root account set up in the mysql database? which I have also tried but with no success
Bookmarks