报错是 Warning: mysql_pconnect() [function.mysql-pconnect]: Client does not support authentication protocol requested by server; consider upgrading MySQL client in C:\Program Files\Apache Group\Apache2\htdocs\php\testMYSQL\testConnection.php on line 11
请大侠帮忙 作者:
Nothing 时间: 2007-8-4 09:55
php的客户端版本太底,有两个办法,
一是安装新的客户端。
二是更新密码,使用OLD_PASSWORD加密密码
打开mysql库的user表,执行update user set password=OLD_PASSWORD('root') where user='root',然后重新启动MYSQL,就可以联接了。