0

今天我尝试将 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)。然而它只是不起作用:(

4

1 回答 1

0

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

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