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]`;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>