3 回答
TA贡献1821条经验 获得超4个赞
在此config.inc文件下查找文件,C:\wamp\apps\phpmyadmin3.5.1找到这一行
$cfg['Servers'][$i]['password'] =";
并替换为
$cfg['Servers'][$i]['password'] = 'Type your root password here';
TA贡献1856条经验 获得超11个赞
我更改了数据库中的密码后,我遇到了同样的问题..我所做的是编辑更新的密码,我之前更改了该密码,但在config.inc.php和D下的相同用户名中没有更新: \ xamp \ phpMyAdmin \ config.inc
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = **'root'**;
$cfg['Servers'][$i]['password'] = **'epufhy**';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';
TA贡献1796条经验 获得超4个赞
在phpMyAdmin页面中更改“ root”的密码后,我遇到了同样的问题,并且也在互联网上寻找解决方案,但未能获得所需的答案,因此我检查了phpMyAdmin目录中的文档。
转到并编辑文件
\modules\phpmyadmin414x140123114237\config.sample.inc.php
寻找线
$cfg['Servers'][$i]['auth_type'] = 'config'
并将“ config”更改为“ http”,这将允许您在使用浏览器进入phpMyAdmin页面时输入用户名和密码。
要么
请参阅同一phpMyAdmin目录(phpmyadmin414x140123114237\doc\html)下的文档文件以寻求帮助和搜索$cfg['Servers'][$i]['auth_type'],您将看到4种选择方式来选择如何登录phpMyAdmin页面。
添加回答
举报