Viewing 2 replies - 1 through 2 (of 2 total)
  • By the looks of it you’ve only halfway set up
    https://codex.www.ads-software.com/Giving_WordPress_Its_Own_Directory

    So wordpress is a bit confused… and looking for the theme in the wrong folders.. it’s also why you cant login…

    You need to copy the index.php from /wp/ to the above folder. in it you need to change the line
    require( dirname( __FILE__ ) . '/wp-blog-header.php' );
    to
    require( dirname( __FILE__ ) . '/wp/wp-blog-header.php' );

    you need to move your wp-config.php file from the wp folder up one level to where you just put the copy of the index.php

    in your wp-config.php you need to add the lined (best probably just after your db config options)

    define('WP_SITEURL', 'https://www.moneyminders.in/wp');
    define('WP_HOME', ' https://www.moneyminders.in');

    which will overload the values stored in the db that should get you back into your website and the homepage loading.

    You will also have to sort out the .htaccess file but once you can get back in visiting the permalinks section in the admin area should re generate it so long as wp has write access to the directory you should be ok

    Thread Starter shivashish

    (@shivashish)

    Thanks man,…..thanku very much…creating my website….

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘SIte not loading error’ is closed to new replies.