Re: "mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL client"
Date: November 24, 2004 04:14AM
Hi I found the solution in another post:
"Re: Error w/ php: mysql_connect(): Client does not support authentication protocol
Posted by: pedro viterbo (IP Logged)
Date: November 22, 2004 11:41AM
you entar in the mySql command line client and enter the following command SET PASSWORD FOR 'user'@'host' = OLD_PASSWORD('password');
example:
my user: is peter, my password: something and my host: localhost
the command will be:
SET PASSWORD FOR peter@localhost = OLD_PASSWORD('something');"