• My webhosting company (netbunch) was hacked and they lost all of my data. Thankfully I had a backup of my wordpress blog that I am trying to restore. I tried to follow the guidelines that are listed in the Codex for restoring your backup if you have used the Backup Plugin (it creates a .sql file). Anyway, I am having issues as if you go to my site now, it seems that it is up, but when you click on “Comments”, any of the pages, etc.., it shows a 404 message.

    What could be the issue?

    Your help is appreciated.

    https://www.neerajpoonam.com/wp

    Thanks.
    poons15

Viewing 6 replies - 1 through 6 (of 6 total)
  • Have you restored all your WordPress files, including (and especially) the .htaccess file?

    Thread Starter poons15

    (@poons15)

    i have restored all of my wordpress files, but i am not sure of my .htaccess file. I am going to have to find it – is that the problem?

    That’s my guess. Since you have stuff in a /wp directory, the .htaccess file should probably look like

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wp/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /wp/index.php [L]
    </IfModule>
    # END WordPress

    Thread Starter poons15

    (@poons15)

    .htaccess is stored within the wp directory, is that right?

    In your case, it appears it should.

    Thread Starter poons15

    (@poons15)

    Thanks! That fixed it!! I appreciate the help. ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Restoring Backup using Backup Plugin’ is closed to new replies.