Test MySQL Connection

PHP/MySQL | Updated 2026

If your website shows database connection errors, you need to verify that your database credentials are correct and the server is reachable. Here is how to test your MySQL/MariaDB connection.

01. PHP Connection Test Script

Create dbtest.php in public_html:

<?php
$host = 'localhost';
$user = 'your_db_username';
$pass = 'your_db_password';
$db   = 'your_db_name';

$conn = new mysqli($host, $user, $pass, $db);

if ($conn->connect_error) {
    echo 'Connection FAILED: ' . $conn->connect_error;
} else {
    echo 'Connection SUCCESSFUL to database: ' . $db;
    $conn->close();
}
?>

Visit yourdomain.com/dbtest.php in your browser. You will see either "Connection SUCCESSFUL" or an error message explaining what failed.

Important

Delete dbtest.php immediately after testing. It contains your database credentials in plain text. Never leave database test files on a live server.

02. Finding Your Database Credentials

  • WordPress: Open wp-config.php and look for DB_NAME, DB_USER, DB_PASSWORD, and DB_HOST
  • Other apps: Check the application's configuration file (usually config.php, settings.php, or configuration.php)
  • cPanel: Go to Databases > MySQL Databases to see your database names and users

03. Common Connection Errors

  • "Access denied for user" - Wrong username or password, or the user is not assigned to the database. In cPanel > MySQL Databases, check that the user is added to the database with "All Privileges." See How to Add a User to a Database.
  • "Unknown database" - The database name is wrong. Database names on cPanel are prefixed with your username (e.g., cpuser_dbname).
  • "Can't connect to MySQL server" - The host should be localhost on shared hosting, not an IP address or remote hostname. See Cannot Connect to MySQL.
  • "Connection refused on port 3306" - MySQL is running but only accepts local connections. Use localhost as the host. See What Port is MySQL On?

Database Connection Issues?

If you cannot get your database connection working, open a ticket with the error message (but not your password).

Open a Support Ticket

Quick Recap

  1. Create a test PHP script with your credentials
  2. Host should be localhost on shared hosting
  3. Check cPanel > MySQL Databases for correct names and user assignments
  4. Database names are prefixed with your cPanel username
  5. Delete the test file immediately after testing

Database troubleshooting · Last updated March 2026 · Browse all PHP/MySQL articles

  • 121 Users Found This Useful

Was this answer helpful?

Related Articles

What Port is MariaDB/MySQL On?

PHP/MariaDB/MySQL | Updated 2026 MariaDB/MySQL runs on port 3306 by default on all Ultra Web...

Learn About MariaDB

PHP/MySQL | Updated 2026 Ultra Web Hosting uses MariaDB as the database server on all shared...

Clean - Shrink ibdata1

PHP/MySQL | Updated 2026 The ibdata1 file is the InnoDB system tablespace used by...

Strict Standards: Non-static method JLoader::register() should not be called statically in

PHP/MySQL | Updated 2026 The "Strict Standards: Non-static method JLoader::register() should...

What is the Path to ImageMagick?

PHP/MySQL | Updated 2026 ImageMagick is installed on all Ultra Web Hosting servers and is...



Save 30% on web hosting - Use coupon code Hosting30