Viewing 3 replies - 1 through 3 (of 3 total)
  • Consider using phpMyAdmin and in the wp_options table set the siteurl and home back to the original values.

    siteurl is your WordPress address (URL) and home is your Blog Address (URL).

    And, some other info:
    http://www.tamba2.org.uk/wordpress/site-url/

    Then when your blog is working, to make WordPress available at http://mydomain.com just change in Settings->General, the Blog address (URL) to http://mydomain.com and put this index.php file in your web-root folder (it is the same folder that contains the wordpress folder)

    <?php
    /* Short and sweet */
    define('WP_USE_THEMES', true);
    require('./wordpress/wp-blog-header.php');
    ?>

    Then update your permalinks in Settings->Permalinks.

    Thread Starter flopez01

    (@flopez01)

    Hello everyone,

    Thanks MichaelH,

    That was a big help. My site works again!

    But I was trying to setup the url without /wordpress

    Will this code help me do that?

    <?php
    /* Short and sweet */
    define('WP_USE_THEMES', true);
    require('./wordpress/wp-blog-header.php');
    ?>

    Yes.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Help! I can’t log back in’ is closed to new replies.