Error Establishing a Database Connection in WordPress ? Nothing is more frustrating than seeing the “Error Establishing a Database Connection” message when trying to access your WordPress website. If this happens suddenly, it can be alarming, especially if your site was working fine before. But don’t worry—this guide will walk you through why this happens and how to fix it step by step.
What Does “Error Establishing a Database Connection” Mean?
WordPress uses PHP and MySQL to function. Your database stores all of your website’s content, including posts, pages, settings, and user information. When WordPress cannot connect to the database, it triggers this error, preventing your site from loading properly.
Common Causes of This Error
Here are the most common reasons why WordPress may suddenly lose its connection to the database:
Possible Cause | Description |
---|---|
Incorrect Database Credentials | Your database username, password, or hostname may have changed. |
Corrupt Database | Your database might have been damaged due to a plugin or unexpected issues. |
Overloaded Server | Shared hosting servers can get overloaded, causing temporary downtime. |
Corrupt WordPress Files | Theme, plugin, or core WordPress files might be broken. |
Web Hosting Issues | The hosting provider might be experiencing downtime or maintenance. |
Malware or Hacking Attempts | Security breaches could disrupt database connections. |

How to Fix the “Error Establishing a Database Connection” in WordPress
Follow these troubleshooting steps to resolve the issue:
1. Check if Your Database Credentials Are Correct
WordPress stores database login details in the wp-config.php file. If these credentials are incorrect, WordPress won’t connect to the database.
Steps to Check Database Credentials:
- Access your website files via cPanel or FTP.
- Locate the wp-config.php file in the root directory.
- Look for the following lines:
define('DB_NAME', 'your_database_name');
define('DB_USER', 'your_database_user');
define('DB_PASSWORD', 'your_database_password');define('DB_HOST', 'localhost');
2. Repair Your WordPress Database
A corrupt database can cause connection issues. Luckily, WordPress has a built-in database repair feature.
How to Repair the Database:
- Open wp-config.php and add this line at the bottom:
('WP_ALLOW_REPAIR', true);
- Visit this URL in your browser:
yourwebsite.com/wp-admin/maint/repair.php
- Click “Repair Database” or “Repair and Optimize Database”.
- Once done, remove the
WP_ALLOW_REPAIR
line from wp-config.php.
3. Check Your Web Hosting Server
If your hosting server is experiencing downtime or issues, your database connection may fail.
How to Check for Hosting Issues:
- Visit your hosting provider’s status page for any outage reports.
- Contact hosting support to ask if there are server issues.
- Try accessing phpMyAdmin in cPanel. If it doesn’t load, the problem is with your server.
4. Increase PHP Memory Limit
Sometimes, a low PHP memory limit can cause database connection errors.
How to Increase PHP Memory Limit:
- Open wp-config.php and add this line:
define('WP_MEMORY_LIMIT', '256M');
- Save the file and refresh your website.
5. Disable Plugins and Themes
A faulty plugin or theme can break the database connection.
Steps to Disable Plugins:
- Access your website files using FTP or cPanel File Manager.
- Go to
wp-content/plugins
. - Rename the plugins folder to
plugins_old
. - Try loading your site. If it works, a plugin was causing the issue.
Steps to Disable the Theme:
- Go to
wp-content/themes
. - Rename your active theme folder (e.g.,
theme-name_old
). - Check if the website works with the default WordPress theme.
6. Restore a Backup
If all else fails, restoring your website from a backup may be the quickest solution.
How to Restore a Backup:
- If you have automatic backups through your hosting provider, restore the latest backup.
- If you used a backup plugin like UpdraftPlus, log in and restore your last working version.
Get More Help
Fixing the WordPress Square Authorization Error | transaction_limit
How to Fix WordPress 404 Error After Migration | Troubleshooting Guide
How to Prevent This Error in the Future
Prevention Tip | Details |
---|---|
Use Reliable Hosting | Choose a hosting provider with 99.9% uptime. |
Keep Backups | Regularly back up your database and files. |
Update WordPress & Plugins | Keep WordPress, themes, and plugins up to date. |
Monitor Website Health | Use tools like UptimeRobot to monitor downtime. |
Improve Security | Install a security plugin like Wordfence or Sucuri. |