Wordpress管理员在升级到3.5.1后停止工作

时间:2013-02-11 12:30:54

标签: php wordpress

今天我尝试将Wordpress更新到最新版本(3.5.1)。这样做之后,我再也无法打开wp-admin/index.php了。它给我一个404错误。我查看了index.php文件,并在调用函数auth_redirect()时中断。这是该函数的代码:

function auth_redirect() {
    // Checks if a user is logged in, if not redirects them to the login page
    $secure = ( is_ssl() || force_ssl_admin() );
    $secure = apply_filters('secure_auth_redirect', $secure);
    // If https is required and request is http, redirect
    if ( $secure && !is_ssl() && false !== strpos($_SERVER['REQUEST_URI'], 'wp-admin') ) {
        if ( 0 === strpos( $_SERVER['REQUEST_URI'], 'http' ) ) {
            wp_redirect( set_url_scheme( $_SERVER['REQUEST_URI'], 'https' ) );
            exit();
        } else {
            wp_redirect( 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
            exit();
        }
    }
    if ( is_user_admin() )
        $scheme = 'logged_in';
    else
        $scheme = apply_filters( 'auth_redirect_scheme', '' );
    if ( $user_id = wp_validate_auth_cookie( '',  $scheme) ) {
        do_action('auth_redirect', $user_id);
        // If the user wants ssl but the session is not ssl, redirect.
        if ( !$secure && get_user_option('use_ssl', $user_id) && false !== strpos($_SERVER['REQUEST_URI'], 'wp-admin') ) {
            if ( 0 === strpos( $_SERVER['REQUEST_URI'], 'http' ) ) {
                wp_redirect( set_url_scheme( $_SERVER['REQUEST_URI'], 'https' ) );
                exit();
            } else {
                wp_redirect( 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
                exit();
            }
        }
        return;  // The cookie is good so we're done
    }
    // The cookie is no good so force login
    nocache_headers();
    $redirect = ( strpos( $_SERVER['REQUEST_URI'], '/options.php' ) && wp_get_referer() ) ? wp_get_referer() : set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
    $login_url = wp_login_url($redirect, true);
    wp_redirect($login_url);
    exit();
}

但是我找不到它打破的具体部分,因为它没有给我一个错误信息,它只显示一个404页面,而在Firefox中它表示它没有正确重定向。

有人可以帮我解决这个问题吗?

谢谢!

其他一些信息:

我找到了它破坏的那一行,它是:

wp_redirect( 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );

回应$_SERVER['HTTP_HOST']$_SERVER['REQUEST_URI']会给我预期的结果(www.domain.com/blog)。但它只是不起作用:(

1 个答案:

答案 0 :(得分:0)

过去我遇到过类似的问题。但它通常涉及一个新的插件安装...几件事情:

  1. 尝试增加可用的RAM。 WP过去给我带来了类似的麻烦,它与RAM有关。您应该能够增加.htaccess文件中的RAM
  2. 这是一个生产系统吗?如果没有,也许记下所有插件,删除它们,尝试访问系统。如果有效,那么你知道问题是基于插件而不是WP本身。然后,您可以逐个系统地添加插件,并确定导致问题的插件。