应用服务器上的 Wordpress 出错


Error with Wordpress on Appserver

Appserver vrs:2.60PHP 6 ,现在我在计算机中安装了 Wordpress,但是当我确认地址时:localhost/wordpress/wp-admin/setup-config.php所以它出错:

致命错误:在第 585 行调用 C:''AppServ''www''wordpress''wp-include''load.php 中的未定义函数 get_magic_quotes_gpc)。

在第 585 行:

if ( get_magic_quotes_gpc() ) {
    $_GET = stripslashes_deep( $_GET );
    $_POST = stripslashes_deep( $_POST );
    $_COOKIE = stripslashes_deep( $_COOKIE );
}

我使用Appserver 2.6.0PHP 6Wordpress 4.0.1Mysql 6.0.4

您能否检查一下您是否在 php 中启用了 megic 报价.ini

magic_quotes_gpc = no

另外,请确保您没有在 .htaccess 中将其关闭

php_flag magic_quotes_gpc Off