xampp 配置

phpMyAdmin的权限中完成root用户的密码设置后,在\...\xampp\phpmyadmin\下搜索config.inc.php文件,定位到如下位置:

/* Authentication type and info */ 
$cfg['Servers'][$i]['auth_type']            = 'http';           //设置登录方式 
$cfg['Servers'][$i]['user']                 = 'root';           //设置用户名 
$cfg['Servers'][$i]['password']             = ''111;            //设置密码 
$cfg['Servers'][$i]['AllowNoPassword']      = true; 
设置auth_type的值为"http";设置password的值为"111",这样登录phpMyAdmin时,就必须要输入密码,否则无法登录。


心法领悟006:修改MySQL缺省字符集。

修改MySQL缺省字符集为utf8,定位到my.ini文件,需添加如下内容:

[client]  
default_character_set=utf8
[mysqld]  
# default-character-set=utf8  
character-set-server = utf8
collation-server = utf8_general_ci
[mysql]  
default_character_set=utf8  

你可能感兴趣的:(xampp)