Page 1 of 1

How to Restore a WordPress Site from Backup Manually

Posted: Wed May 06, 2026 8:02 pm
by ARFrater
Guide from wpthrill but have made some small changes

Update details to DB and passwords in wp-config.php

IN the SQL file change (Don't open with Bluefish takes to long)

Code: Select all

CREATE DATABASE /*!32312 IF NOT EXISTS*/ `[b]#####[/b]` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */;

USE `[b]#####[/b]`;
To Match the DB Name and USER

Then if website keeps displaying pages not found
Sample .htaccess File (Useful for Restore)

If your .htaccess is missing, use this:

Code: Select all

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