WordPress安装错误"访问被拒绝"

时间:2015-12-04 17:13:21

标签: wordpress

我在我的Localhost上安装WordPress,但我没有重定向到我的WordPress安装。我正在使用xampp服务器和WordPress版本4.0。

当我尝试打开我的WordPress安装时,它会在浏览器中显示拒绝访问。

1 个答案:

答案 0 :(得分:0)

转到Xampp> PhpMyAdmin>并使用您喜欢的编辑器编辑Config.inc.php。

它看起来像下面的代码,只需更改 $ cfg ['服务器'] [$ i] ['密码'] =&#39 ;密码'; $ cfg ['服务器'] [$ i] [''] =&# 39;'; 并点击保存。

        $cfg['Servers'][$i]['verbose'] = 'localhost';
        $cfg['Servers'][$i]['host'] = 'localhost';
        $cfg['Servers'][$i]['port'] = '';
        $cfg['Servers'][$i]['socket'] = '';
        $cfg['Servers'][$i]['connect_type'] = 'tcp';
        $cfg['Servers'][$i]['extension'] = 'mysqli';
        $cfg['Servers'][$i]['auth_type'] = 'config';
        $cfg['Servers'][$i]['user'] = 'root';
        $cfg['Servers'][$i]['password'] = 'PasswordWillBeHere';
        $cfg['Servers'][$i]['AllowNoPassword'] = false;