mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication
Mar172013
作者:网硕互联 发布:2013-03-17 12:35 分类:FAQ mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication已关闭评论
解决方法:
SET old_passwords = 0; UPDATE mysql.user SET Password = PASSWORD('testpass') WHERE User = 'testuser' limit 1; SELECT LENGTH(Password) FROM mysql.user WHERE User = 'testuser'; FLUSH PRIVILEGES;
最活跃的读者