Troubleshooting MySQL Database Connection Issues

Databases are the driving element of a website. Databases tell a website how to function on a dynamic level, meaning that the information can be smart enough to update without the user directly making those changes if need be. Without a proper connection to an SQL database, a website cannot function and you will likely be met with one of the following warnings:

Error establishing a database connection

OR

Warning: mysql_connect(): Access denied for user: 'user1_name1@localhost' (Using password: YES) in /home/joe123/public_html/catalog/includes/functions/database.php on line 19
Unable to connect to database server!

These warnings indicate that the website database now exists in cPanel, but the website cannot communicate with it. This can be corrected by checking each of the connection points between the database and the website as detailed in the steps below.

1. Create and Assign a New Database User

The first step is to create a new user and then assign the user to the database. This is needed to reconfigure your website's database settings.

  1. Create a new database user.
  2. Under Add User To Database, choose the user you just created from the Userdrop-down menu.
  3. Choose the name of your database from the Database drop-down menu and click Add. (Notice that cPanel will automatically prepend your database name with your cPanel username.)
Be sure to note the database user name and user password for the new user being assigned to the database. This is very essential to the following steps.

2. Locate the Database Configuration File

Once you have created a new user and have assigned the user to the database, you will need to locate the database configuration file for the website.

  • If you received a general error message like the first example, please refer to the following article for help determining the location of your configuration file:
  • If you received a specific error message like the second example, then the location of the error has been provided. In the example above, the message indicates that the error occured "in /home/joe123/public_html/catalog/includes/functions/database.phpon line 19."

3. Reconfigure the Database Settings

Once the configuration file has been located, you can reconfigure the database settings for your website. Though every script can vary, the following instructions provide a general walkthrough of how to complete this step.

  1. Go to the configuration file and choose to Edit.
  2. Look in the code for a place where the database name is defined. The database information should be fairly obvious and easy to find. Here is an example of what the database for a WordPress installation would look like:
    define('DB_NAME', 'user1_wrdp1');
    define('DB_USER', 'user1_name1');
    define('DB_PASSWORD', '5Jmfde%53L');
    define('DB_HOST', 'localhost');
  3. Make sure that the cPanel username in the first part of the database name is correct. Update the cPanel username (part before the underscore) if needed, but change nothing after the underscore. For example:
    define('DB_NAME', 'joe123_wrdp1');
  4. Replace the current DB_USER and DB_PASSWORD values in the file with the new values. For example:
    define('DB_USER', 'joe123_gatorboy');
    define('DB_PASSWORD', 'nvGHdCC0dCMz');
  5. Be sure that the host name is localhost.
  6. Save the file, and you are done!

After completing the steps above, you should no longer receive an error message regarding your database connection.

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

WordPress pointing home URL to subdirectory

Pointing your home site's URL to a subdirectory In some cases, you may have a WordPress site...

How to log into cPanel

cPanel is a web hosting account management tool available on all Digicom Linux hosting plans,...

Change cPanel Password or recover lost password

Requesting a New cPanel Password If you have lost or forgotten your cPanel password, you can...

Location of Script Configuration Files

Location of Script Configuration Files These paths are relative to the root of the script, not...

Connect to MySQL Database

How to Connect to the MySQL Database In order for your MySQL database to work as intended, it...