• andyinspire

    (@andyinspire)


    Hello

    I have it set so my site goes to domain name andrewmondia.com. When I click on Tab About than click on home tab it gets error message.

    WordPress Address (URL) is pointing to https://andrewmondia.com/wp where files are being kept. Unsure why that is happening. Looked for answers here but way over my head.

Viewing 6 replies - 16 through 21 (of 21 total)
  • @andyinspire, Could you try to add following two lines in the index.php (located in the root)

    define('WP_HOME','https://andrewmondia.com');
    define('WP_SITEURL','https://andrewmondia.com/wp');

    ..and also replace
    require( dirname( __FILE__ ) . 'wp/wp-blog-header.php' );
    to
    require( dirname( __FILE__ ) . '/wp/wp-blog-header.php' );
    in your index.php.

    So finally, your index.php should look like…

    <?php
    define('WP_USE_THEMES', true);
    
    /** Loads the WordPress Environment and Template */
    require( dirname( __FILE__ ) . '/wp/wp-blog-header.php' );
    
    define('WP_HOME','https://andrewmondia.com');
    define('WP_SITEURL','https://andrewmondia.com/wp');
    Thread Starter andyinspire

    (@andyinspire)

    no luck think i need to redo /re-install

    Thread Starter andyinspire

    (@andyinspire)

    The would help if someone did youtube video instructions that are already posted separately. Cause I tried to follow them and my site went funny. And now it won’t even go live now.

    Thread Starter andyinspire

    (@andyinspire)

    So I got my site back up and working again. Followed instructions but what do I do with files in folder? I am still getting and error about WP?

    Thread Starter andyinspire

    (@andyinspire)

    in wp folder that is

Viewing 6 replies - 16 through 21 (of 21 total)
  • The topic ‘Home Tab not working’ is closed to new replies.