• Hi
    I get this error. The site is up and running and works fine but problem is that I cannot login.
    Any solutions
    TIA
    [snip]
    greets
    WildDuck

Viewing 9 replies - 1 through 9 (of 9 total)
  • I found myself getting fun errors like that whenever I have extraneous blank lines at the end of my php files. Sounds dumb, but it’s something to check anyway.

    Thread Starter wildduck

    (@wildduck)

    I still get the same error even with a clean install with the new platinum version….hmmm…strange.
    Tested with the old 0.72 and its working fine…

    I am getting identical problems on a totally clean install either via Frontpage or using FTP. I used the Platinum build as well.

    Thread Starter wildduck

    (@wildduck)

    Hi allusion
    Yes and tested it in IE, Opera (new clean install), and firebird…
    everything failed.
    +++++++
    I edited this part of the code in wp-login back to the old b2loging version but it didnt worked either.
    New wp-login code:
    setcookie(‘wordpressuser_’.$cookiehash, $user_login, time()+31536000);
    if ($pass_is_md5) {
    setcookie(‘wordpresspass_’.$cookiehash, $user_pass, time()+31536000);
    } else {
    setcookie(‘wordpresspass_’.$cookiehash, md5($user_pass), time()+31536000);
    }
    if (empty($HTTP_COOKIE_VARS[‘wordpressblogid_’.$cookiehash])) {
    setcookie(‘wordpressblogid_’.$cookiehash, 1,time()+31536000);
    ++++++++++++++++++++++++++
    It was the CVS update between christmas and new year all the trubles started til then everthing worked fine 🙂

    This is on a brand new site that has never been live before. Its a new domain name too so there shouldn’t be any cookies to clear for the site and I have gotten the error on two computers

    Comment out that line in get_settings() – don’t have it echo anything. The echo (outputting data to the page) is what is breaking it.

    Well, you can either fix the problem by going into your database and adding that record (I’m not 100% sure what goes in there) or you can fix the symptom by commenting out the echo now that you know you have the same problem I did, just commenting it out will work for now.
    Long term, you have to fix the missing setting, i think…

    The setting should be removed, so long term, you can remove the line from wp-settings.php.

    Well adding the comment_allowed_tags entry definitely solved the header problems. The question is what does this entry do? and Why did they change the default behaviour of some inherent functions without thorough testing and veryfying that the default populated database worked?
    ~James

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘WP 1 RC1 -> WP-login Error’ is closed to new replies.