个人计算机编程环境配置

来源:互联网 发布:影子银行规模数据 编辑:程序博客网 时间:2024/05/21 17:32

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