在您的服务器XAMPP中,您在配置中定义的controluser的连接失败

时间:2019-03-22 07:10:00

标签: sql-server mysqli xampp localhost

我正在尝试访问本地主机中的(phpMyAdmin),但它要求我输入用户名和密码。

我检查了文件(config.inc.php)中的用户名和密码,就像这样:

    /* 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'] = '';

/*

我输入了相同的用户名,密码为空。

但是它给了我这些错误:

enter image description here

我更改了config.inc.php中的信息数据,如下所示:

   /* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '12345';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;
$cfg['Lang'] = '';

/*

但是我仍然有同样的错误。我希望有人能帮助我。

0 个答案:

没有答案