Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter glazebro

    (@glazebro)

    I tried that stuff. Is there anything else I can do, or do I just need to try again?

    Thread Starter glazebro

    (@glazebro)

    I got it!!! Thank you I was just a character off.

    Thread Starter glazebro

    (@glazebro)

    new problem:

    It says to delete these two lines of code after I get it up and running. That results in it not working for me anymore. Is that an important step?

    Thread Starter glazebro

    (@glazebro)

    The URL setting is now locked in my admin page as well. Although that may be for the best for me, I would like to be able to mess it up again if i do so please.

    Which two lines did you add?

    Thread Starter glazebro

    (@glazebro)

    sorry, I added this in my wp-config.php

    define(‘WP_HOME’,’https://www.stupidpicturesvideosandmusic.com’);
    define(‘WP_SITEURL’,’https://www.stupidpicturesvideosandmusic.com’);

    Yeah… you’ve not really read that page very well have you? ??

    Method 1 is the one you’ve used. You’ve basically hard coded the blog url into the WordPress config file. It’s fixed your problem, but since it’s hard coded, it won’t let you change it via the Admin panel. You can leave those two lines there if you want. As it says “you can stop reading now”… but you didn’t!

    Method 2 (“Quick fix method”) gives you two different lines to use in your functions.php file:

    update_option('siteurl','https://example.com/blog');
    update_option('home','https://example.com/blog');

    If you use that method, you will have to remove those different lines when it’s working again. You should be able to edit the blog url via the admin panel once you get it running that way and it’ll be like before.

    Thread Starter glazebro

    (@glazebro)

    ah, once again thank you. My mind completely interpreted that page wrong. I guess I should have read closer. I was too focused on my problem. Thank you!

    No worries, g’night! ??

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘changed URL cant log in cant figure it out…’ is closed to new replies.