如果您无法控制服务器
我刚遇到这个问题,并且能够解决它。
首先,使用不关心old_passwords的旧客户端连接到MySQL数据库。使用您的脚本将使用的用户进行连接。
运行以下查询:
SET SESSION old_passwords=FALSE;
SET PASSWORD = PASSWORD('[your password]');
在您的PHP脚本中,更改mysql_connect函数以包括客户端标志1:
define('CLIENT_LONG_PASSWORD', 1);
mysql_connect('[your server]', '[your username]', '[your password]', false, CLIENT_LONG_PASSWORD);
这使我可以成功连接。
编辑:根据Garland Pope的评论,从PHP 5.4起,可能不需要在您的PHP代码中手动设置CLIENT_LONG_PASSWORD了!
编辑:由Antonio Bonifati提供,PHP脚本可以为您运行查询:
<?php const DB = [ 'host' => '...',
'user' => '...',
'pwd' => '...', ];
if (!mysql_connect(DB['host'], DB['user'], DB['pwd'])) {
die(mysql_error());
} if (!mysql_query($query = 'SET SESSION old_passwords=FALSE')) {
die($query);
} if (!mysql_query($query = "SET PASSWORD = PASSWORD('" . DB['pwd'] . "')")) {
die($query);
}
echo "Excellent, mysqli will now work";
?>