Search for the Article

Error establishing a database connection Quick Fix -1

Issue is : 
Error establishing a database connection 
This either means that the username and password information in your wp-config.php file is incorrect or that contact with the database server at localhost could not be established. This could mean your host’s database server is down. 

  • Are you sure you have the correct username and password? 
  • Are you sure you have typed the correct hostname? 
  • Are you sure the database server is running?


How to resolve: 

The "Error establishing a database connection" message in WordPress indicates that WordPress is unable to connect to the database using the provided credentials. This error can be caused by various reasons, and here's how you can resolve it:

Check Database Credentials:

  • Make sure you have correctly entered the database name, username, password, and database host in the wp-config.php file. Verify that there are no typos or mistakes in these values.
  • Ensure the database user you created has the necessary privileges to access and modify the database.

FIX 1: 

If you are unfamiliar with WordPress or installing it for the first time on your site, you might encounter a common issue. The database credentials you provide during installation could be automatically modified or changed by default. Let's consider the following example where I initially provided these values:

Database Name: ecommerce
Database Username: seoecommerce
Database Password: **************


However, the system automatically changes them to the following:

Now, the updated database values are as follows:



SO the new database values are below: 




So the new values are , now: 

Database Name: u617885800_ecommerce
Database Username: u617885800_seoecommerce
Database Password: **************


Please note that such changes in database credentials can happen, and it's essential to use the updated values when configuring the database settings in your WordPress installation to ensure a successful connection and functionality of your website. If you encounter any difficulties, seeking assistance from your hosting provider's support team can be helpful in resolving the issue.