查看完整版本: 请高手帮忙!php连不上mysql老出错!

anqiang530 2007-8-3 20:20

请高手帮忙!php连不上mysql老出错!

这些是我写的测试连接mysql数据库代码.
<body>
<?php
$dbh=mysql_pconnect("localhost","root","root");
echo $dbh."<br>";
?>
</body>

报错是
[b]Warning[/b]: mysql_pconnect() [[url=http://localhost/php/testMYSQL/function.mysql-pconnect][color=#800080]function.mysql-pconnect[/color][/url]]: Client does not support authentication protocol requested by server; consider upgrading MySQL client in [b]C:\Program Files\Apache Group\Apache2\htdocs\php\testMYSQL\testConnection.php[/b] on line [b]11[/b]

请大侠帮忙

Nothing 2007-8-4 09:55

php的客户端版本太底,有两个办法,
一是安装新的客户端。
二是更新密码,使用OLD_PASSWORD加密密码
打开mysql库的user表,执行update user set password=OLD_PASSWORD('root') where user='root',然后重新启动MYSQL,就可以联接了。
页: [1]
查看完整版本: 请高手帮忙!php连不上mysql老出错!