个人计算机编程环境配置

xampp 3.2.2


  • Let phpMyAdmin know the changes

1.0 Open (in plain text editor of your choice) the file \xampp\phpMyAdmin\config.inc.php
2.0 search for the line
CODE: SELECT ALL
$cfg['Servers'][$i]['password'] = 'mypassword';
修改为

$cfg['Servers'][$i]['password'] = 'mypassword';
/* Authentication type and info */
$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'] = '';

猜你喜欢

转载自blog.csdn.net/qq_32288801/article/details/51174728