我安装了xampp,我正在尝试连接到localhost / phpmyadmin。
我收到一个错误。配置中定义的controluser连接失败。
我甚至无法以用户名登录:root,无密码
这是我的配置:
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';
/* User for advanced features */
$cfg['Servers'][$i]['controluser'] = 'pma';
$cfg['Servers'][$i]['controlpass'] = '';
答案 0 :(得分:0)
暂时注释掉controluser和controlpass指令(通过将//
添加到行的开头)。然后正常登录;如果您想使用高级功能,可以重置“pma”的密码。用户并在config.inc.php
中设置新密码。