我已经在Windows计算机上安装了XAMPP,并试图在本地运行WordPress。我在连接wp数据库时遇到了一些问题,现在根本无法访问phpMyAdmin。有没有办法解决这个问题,而无需重新安装XAMPP?
我尝试在XAMPP的passwords.txt
,wordpress wp-config.php
,php config.inc.php
文件中设置用户名/密码。我取消注释并在php.config.inc.php
文件中设置了密码:
$cfg['Servers'][$i]['password']
当我尝试在localhost上进入phpmyadmin时,出现错误消息:
无法连接:无效的设置。 mysqli_real_connect():(HY000 / 1045):拒绝用户'root'@'localhost'的访问(使用密码:是) phpMyAdmin尝试连接到MySQL服务器,服务器拒绝连接。您应该检查配置中的主机,用户名和密码,并确保它们与MySQL服务器管理员提供的信息相对应。
答案 0 :(得分:0)
尝试一下
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'ENTER_YOUR_USER_NAME_HERE';
$cfg['Servers'][$i]['password'] = 'ENTER_YOUR_PASS_HERE';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';
我希望this是相似的。第三个答案。