MySQL Forums
Forum List  »  Newbie

Re: mysql_connect - Access Denied
Posted by: Benjamin Choi
Date: October 30, 2004 10:03PM

The error returned indicates that the MySQL client (within PHP) is incompatible with the MySQL server.

Note that PHP 4's MySQL client is unable to authenticate correctly with MySQL 4.1 server unless one configures MySQL server to support the old password scheme. See workarounds at http://dev.mysql.com/doc/mysql/en/Old_client.html.

And if you want to use MySQL 4.1 as is with your PHP applications, you must use PHP 5. Furthermore, with PHP 5, you must use the MySQLi extension in order to connect to MySQL servers 4.1.3 and up. Bear in mind that MySQLi has a different set of functions from the regular ones and also introduces new classes. See http://www.php.net/mysqli for details.

Options: ReplyQuote


Subject
Written By
Posted
October 28, 2004 01:02PM
Re: mysql_connect - Access Denied
October 30, 2004 10:03PM
December 31, 2007 03:06AM
November 08, 2004 05:06PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.