mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication

前端 未结 2 624
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-25 07:23

I\'m having issues with connecting to MySQL 5.5.8 from PHP 5.3.5 (WAMP install). I\'m getting the error below:

mysqlnd cannot connect to MySQL 4.1+ using the old         


        
2条回答
  •  天涯浪人
    2021-01-25 07:55

    Connect to MySQL with a client using the user that has the problem, execute following command:

    SET old_passwords=0;
    SET password=PASSWORD('your current password');
    

提交回复
热议问题