xampp + wordpress总结

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/wydyd110/article/details/82684937

1  XAMPP的安装及使用

参考自:https://blog.csdn.net/qq_36595013/article/details/80373597

2 安装WordPress

参考自:https://jingyan.baidu.com/article/414eccf670dea76b431f0aab.html

遇到的错误一:phpmyadmin无法连接:无效的设置解决办法

打开phpMyAdmin目录 找到phpMyAdmin的配置文件config.inc.php,将其中的

 代码如下 复制代码

$cfg['Servers'][$i]['auth_type'] = 'config';

 改为:

 代码如下 复制代码
  1. $cfg['Servers'][$i]['auth_type'] = 'cookie';  //将config改为cookie  
  2. $cfg['Servers'][$i]['user'] = 'root';  
  3. $cfg['Servers'][$i]['password'] = 'root';   //填写密码  
  4. $cfg['Servers'][$i]['extension'] = 'mysql';  
  5. $cfg['Servers'][$i]['AllowNoPassword'] = true;  

猜你喜欢

转载自blog.csdn.net/wydyd110/article/details/82684937
今日推荐