• WordPress 1.2.1 Redirection Limit For this URL exceeded
    https://alexvalentine.org/blog/wp-login.php
    I’ve installed the latest version of wordpress in gentoo portage. The install goes smooth but everytime I try to log in I get the following error:
    Redirection for this URL exceeded. Your browser may be blocking cookies.
    I’ve looked through all the existing bug reports but I did not see any fixes. The wordpress site has similiar reports but there doesn’t appear to be a concrete solution to this problem. Anyone have a fix?

Viewing 6 replies - 16 through 21 (of 21 total)
  • Hi,
    I definately need some help….
    can’t download the wordpress
    when i do, it says nothing to extract….from the zip folder…
    can someone help me..this is all VERY new to me…
    thanks a bunch
    Cindy Lee
    https://www.lottapoker.com
    [email protected]

    For me the bug appeared as a failure to find <i>wp-layout.css</i>. Examination of the source of <i>index.php</i> (before and after preprocessing by the server) points to the functions <i>get_settings()</i> (defined in <i>wp-includes/functions.php</i>) and <i>bloginfo()</i> (defined in <i>wp-includes/template-functions-general.php</i>); both return addresses containing multiple redirects.

    This fixes it for Gentoo:
    diff -P -r -u -x ‘*~’ ebuild/htdocs/wp-admin/auth.php tarball/htdocs/wp-admin/auth.php
    — ebuild/htdocs/wp-admin/auth.php 2004-10-10 23:45:52.000000000 -0500
    +++ tarball/htdocs/wp-admin/auth.php 2004-05-18 21:05:40.000000000 -0500
    @@ -25,7 +25,7 @@
    return false;
    } else {
    – if ($login->user_login == $user_login && $login->user_pass == $user_pass_md5) {
    + if ($login->user_login == $user_login && md5($login->user_pass) == $user_pass_md5) {
    return true;
    } else {
    return false;

    I can’t even get to the login screen now.

    With Mozilla won’t go to login screen.
    IE won’t go past the login screen.

    I reloaded the login file and the admin/index.php file.

    I really don’t want to have to reload everything.

    Moderator James Huff

    (@macmanx)

    Follow these steps to check and/or correct you site_url and home values:
    https://tamba2.org.uk/wordpress/site-url/

    Set Home to my blog
    and verified site was the same URL.

    However, that didn’t seem to help any.

Viewing 6 replies - 16 through 21 (of 21 total)
  • The topic ‘WordPress 1.2.1 Redirection Limit For this URL’ is closed to new replies.