所以,我是一个初学者,我刚刚在我的 Windows 机器上安装了 XAMPP,它似乎工作得很好。我对 config.inc.php 进行了一些更改,因为我无法删除默认数据库,从那时起,我在尝试访问时收到此错误:
http://localhost/phpmyadmin/
我已经使用卸载程序卸载了XAMPP,然后再次安装,但phpMyAdmin仍然无法工作
当我修改 config.inc.php 时,我不小心更改了这段代码中“extension”的值
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';
我改成了这个
$cfg['Servers'][$i]['extension'] = 'mysql';
它的作用就像一个魅力