我正在尝试访问本地主机中的(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'] = '';
/*
我输入了相同的用户名,密码为空。
但是它给了我这些错误:
我更改了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'] = '';
/*
但是我仍然有同样的错误。我希望有人能帮助我。