错误:
我在其他问题中尝试了解决方案但我似乎无法使其工作,错误仍然卡住,我无法访问localhost / phpmyadmin,有人可以帮助我。
Fix Access denied for user 'root'@'localhost' for phpMyAdmin
$cfg['Servers'][$i]['password'] = ' ';
/ **************/
在C:\ xampp \ phpMyAdmin下找到config.inc.php文件,并在任何编辑器中打开它。
找到以下行:
$cfg['Servers'][$i]['password'] = ' ';
在引号内输入所选密码。另外,为了使 localhost / phpmyadmin要求输入用户名和密码,找到以下行:
$cfg['Servers'][$i]['auth_type'] = 'config';
将以上行更改为:
$cfg['Servers'][$i]['auth_type'] = 'cookie';
等等。