Is there anyway to update the mysql PHP4 client?

I am getting the following error:

The client does not support the authentication protocol requested by the server; consider upgrading MySQL client

I know I can solve this with:

SET PASSWORD FOR user@localhost = OLD_PASSWORD('password'); 

      

But I want to know if there is another way to do this using another mysql extension for PHP or something like that?

0


a source to share


1 answer


One option is to use OLD_PASSWORD

as you suggested, the other option is to update the MySQL client library and PHP MySQL bindings. I don't know of another option: there is no alternative library.



0


a source







All Articles