hi
php myadmin is control mysql server
i want finish the message by php myadmin
message
Warning: Client does not support authentication protocol
please help
Warning: Client
Moderators: egami, macek, gesf
-
- New php-forum User
- Posts: 243
- Joined: Wed Feb 01, 2006 9:18 am
- Location: Netherlands
- Contact:
The problem is that the database you're using is MySql 4.1 or higher, and the client is MySql 4.0 or lower.
MySql 4.1 introduces better password protection, but unfortionately older clients cannot handle that.
You should ask your hosting provider to upgrade PHP so it includes the 4.1 client, or add this to the MySql configuration (my.ini):
old_passwords
Coditor
MySql 4.1 introduces better password protection, but unfortionately older clients cannot handle that.
You should ask your hosting provider to upgrade PHP so it includes the 4.1 client, or add this to the MySql configuration (my.ini):
old_passwords
Coditor
- Alexej Kubarev
- Site Admin
- Posts: 2213
- Joined: Fri Mar 05, 2004 7:15 am
- Location: Täby, Stockholms län
- Contact:
The solution to solveing this problem has been given before in one of the tutorials posted at the forum.
I would instead suggest upgrading to a newer version of PHP.
if you are running MySQL 5.0 you will need to use mysqli instead of mysql extention.
You will not be able to connect to it with php4.
I do recommend upgrading to MySQL 5.0 and moving to PHP5.1 (using mysqli ofcourse).
I would instead suggest upgrading to a newer version of PHP.
if you are running MySQL 5.0 you will need to use mysqli instead of mysql extention.
You will not be able to connect to it with php4.
I do recommend upgrading to MySQL 5.0 and moving to PHP5.1 (using mysqli ofcourse).