Bluehost Web Hosting Help

MySQL Error Messages

MySQL Errors

Summary

If you are having connection errors, please make sure you have followed the instructions on our Remote Database Connection Setup article.

Note: The most common problem in connecting is due to an incorrect username and/or password. Please make sure the username you use matches the username created in the "MySQL Database" section of your cPanel.


Examples of MySQL Errors:

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'Username'@'localhost' (using password: YES) in /home1/examplec/public_html/config.php on line 3
Couldn't connect to server.

This kind of error clearly shows the issue. Access denied lets you know immediately that the database user or password is incorrect in your PHP file. If you see this error, open the PHP file and make sure the username and password are correct. The database and username must always have the appropriate prefix of username_ (replace username with your actual cPanel username and don't forget the underscore "_"). You can copy the correct spelling from your cPanel, under "MySQL Databases" section.

Parse error: syntax error, unexpected T_STRING in /home1/examplec/public_html/index.php on line 31

This kind of error means you have made a mistake in your coding. Generally, it is a missing punctuation, as PHP code is very sensitive. Unfortunately, our support staff is not trained to deal with coding issues and this may fall beyond our scope of support. Issues dealing with scripting, coding, or third party products may be best consulted with a professional programer, design group, or developer of the third party product.

Knowledgebase Article 123,783 views bookmark tags: errors mysql


Was this resource helpful?

Did this resolve your issue?


Please add any other comments or suggestions about this content:





Recommended Help Content

Local MySQL Connection Blocked To Server

I get the following database connection error: Warning: mysql_connect() [function.mysql-connect]: Host 'host#.Bluehost.com' is blocked because of many connection errors; unblock with 'mysqlad

Error Code 500 on Dedicated and VPS Servers

This article will explain some common causes for 500 errors on Dedicated or V.P.S servers.

Email Error Messages - What Do They Mean?

Look for the error message that most closely matches the one you received.

Related Help Content

How To Avoid Outlook IMAP Timeout Errors - Outlook IMAP Email Error

How do I avoid Outlook IMAP timeout errors?

Email Returned Error - Speed Limit Exceeded

Why do my email messages keep getting returned?

Optimizing MySQL: Queries and Indexes Article 4 of 4

Optimizing MySQL: Queries and Indexes Article 4 of 4 Courtesy of:Ian Gilfillan Most systems need to be highly optimized for selects - take a news site which performs millions of queries per day, but w

Change a MySQL Users Password

This article will explain how to change or reset the password for a MySQL user.

Optimizing MySQL: Queries and Indexes Article 2 of 4

Optimizing MySQL: Queries and Indexes Article 2 of 4 Courtesy of: Ian Gilfillan Some knowledge of how indexes work allows you to use them more efficiently. Firstly, note that when you update a table w

Optimizing MySQL: Queries and Indexes Article 1 of 4

Optimizing MySQL: Queries and Indexes Article 1 of 4 Courtesy of: Ian Gilfillan Badly defined or non-existent indexes are one of the primary reasons for poor performance, understanding and then fixing

Optimizing MySQL: Queries and Indexes Article 3 of 4

Optimizing MySQL: Queries and Indexes Article 3 of 4 Courtesy of: Ian Gilfillan Ordering by surname is a common requirement, so it would make sense to create an index on surname. But in this example o

How to Create and Delete MySQL Databases and Users

This article will explain MySQL database and user creation and deletion, and explain how to assign a user to a database.