PHP连接MYSQL问题 求解决办法

2024-11-20 07:09:07
推荐回答(3个)
回答1:

你的PHP程序应该是从MySQL 4.1之前的版本升到新版MySQL库了,按照提示更新密码即可。
Please use an administration tool to reset your password with the command SET PASSWORD = PASSWORD('your_existing_password')

回答2:

解决方法:
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;

回答3:

是的
在wamp这是
配置扩展的开启选项
你需要在apache
里面的这一行开启
,并设置路径跟你php里面的一样,同时需要把
mysql.dll
,mysqli.dll
开启