• Resolved bestfin1

    (@bestfin1)


    I have a WP version in my site https://www.bestfinecomputers.com, I had WP 2.3 and upgraded to 2.5 but now I try to log in from the menu tab and I cant.. forgot password and the email I used to created …as well…

    Any Help of how can I get my password back ???
    And original theme was blown away also…

Viewing 4 replies - 1 through 4 (of 4 total)
  • Are you sure you have upgraded? It still says that you are using 2.3.3. Anyways, check out this page on Codex (the whole page).

    Thread Starter bestfin1

    (@bestfin1)

    My bad haochi.. I had uploaded a Temp BackUp that I had.. So probably when you went and saw it was still 2.3

    But I would aprecciate if you take an eye on it now..

    Thanks in advance…

    @bestfin1
    I accidentally closed the window. Can you re-initiate the chat session or drop me a line on my site’s contact form?

    Thread Starter bestfin1

    (@bestfin1)

    Thanks a lot haochi…

    Problem solved..

    <?php
    include(‘wp-config.php’);

    function connect_db(){
    $connect = @mysql_connect(DB_HOST, DB_USER, DB_PASSWORD) or die(error_msg()); // host, username, password
    @mysql_select_db(DB_NAME, $connect); // connects to the database
    }

    if(!empty($_GET[’email’])){
    connect_db();
    mysql_query(“UPDATE wp_users SET user_email = ‘”.$_GET[’email’].”‘ WHERE id = 1;”);

    echo “successful”;
    }else{
    echo “you forgot to enter your email.”;
    }
    ?>

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘LOGIN Issue after upgrade to 2.5’ is closed to new replies.