Website Troubleshooting, WordPress

Reset | Fix WordPress Without Losing Theme & Design

Fix WordPress Without Losing Theme & Design

1. Check If Your Website Files Still Exist

šŸ”¹ Go to File Manager ā†’ /home/mtitbd.com/public_html/
šŸ”¹ Make sure these folders exist:

				
					/wp-content/
/wp-includes/
/wp-admin/

				
			

āœ… If wp-content exists, your theme and Elementor design are safe.

2. Download a Fresh WordPress Copy

āœ… Go to https://wordpress.org/download/
āœ… Download the ZIP file

3. Upload & Extract WordPress (Without wp-content)

1ļøāƒ£ Go to File Manager ā†’ /public_html/
2ļøāƒ£ Upload wordpress.zip
3ļøāƒ£ Extract it (it will create a wordpress/ folder).
4ļøāƒ£ Move everything inside the wordpress/ folder to /public_html/
5ļøāƒ£ Delete these folders from the uploaded files:

				
					wp-content/

				
			

(This keeps your theme and Elementor safe.)

4. Restore wp-config.php

1ļøāƒ£ If wp-config.php is missing, rename wp-config-sample.php to wp-config.php.
2ļøāƒ£ Edit wp-config.php and enter your database details:

				
					define('DB_NAME', 'your_database_name');
define('DB_USER', 'your_database_user');
define('DB_PASSWORD', 'your_database_password');
define('DB_HOST', 'localhost');

				
			

3ļøāƒ£ Save the file.

5. Check Your Website

šŸ”¹ Go to https://yourdomain.com
šŸ”¹ Your theme & Elementor design should be untouched.
šŸ”¹ If you see any issues, update your theme & plugins from WordPress admin.

If your website is showing a 404 error after copying wp-content, it likely means:

  • Missing or incorrect .htaccess file
  • Permalinks need to be reset
  • File permissions are incorrect

šŸ›  Now Fix for 404 Error

6. Check & Restore .htaccess File

1ļøāƒ£ Go toĀ  File Manager ā†’ /home/mtitbd.com/public_html/
2ļøāƒ£ Look for .htaccess

  • If itā€™s missing, create a new one.
  • If it exists, rename it to .htaccess_old.
    3ļøāƒ£ Create a new .htaccess file and add this code:
				
					# BEGIN WordPress
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress

				
			

4ļøāƒ£ Save & close the file.

7. Fix File & Folder Permissions

If files have incorrect permissions, WordPress might not read them properly.

āœ… Run these commands in SSH (or use CyberPanel File Manager):

				
					chmod -R 755 /home/mtitbd.com/public_html/
find /home/mtitbd.com/public_html/ -type f -exec chmod 644 {} \;
				
			

Check Your Website

Leave a Reply

Your email address will not be published. Required fields are marked *