Live Helper Chat support forum.. Forum is locked. New place for questions - Github Discussions
You are not logged in.
Pages: 1
Cannot login with provided logins. Returned message:
SQLSTATE[HY000] [2000] mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication. Please use an administration tool to reset your password with the command SET PASSWORD = PASSWORD('your_existing_password'). This will store a new, and more secure, hash value in mysql.user. If this user is used in other scripts executed by PHP 5.2 or earlier you might need to remove the old-passwords flag from your my.cnf file
What can i do?
Offline
As written in error. In general I recommend update your mysql.
2013/12/8 shotman <purch...***.com>
Cannot login with provided logins. Returned message:
SQLSTATE[HY000] [2000] mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication. Please use an administration tool to reset your password with the command SET PASSWORD = PASSWORD('your_existing_password'). This will store a new, and more secure, hash value in mysql.user. If this user is used in other scripts executed by PHP 5.2 or earlier you might need to remove the old-passwords flag from your my.cnf file
What can i do?
Offline
Here are my server specs, is it possible to do something in livehelper soft to make it compatible with old authentication?
Apache version2.2.26PHP version5.4.22MySQL version5.1.70-cllArchitecturex86_64Operating systemlinux
Offline
Just try to execute in your phpmyadmin tool.SET PASSWORD = PASSWORD('your_existing_password')
Of course just change your_existing_password to real password
Offline
ok i have fixed it... i used these commands: couse using just set password doesnt make any difference i found it here also
http://stackoverflow.com/questions/1575807/cannot-connect-to-mysql-4-1-using-old-authentication
... thank you so much!!!
SET SESSION old_passwords=FALSE;
SET PASSWORD = PASSWORD('[your password]');
Offline
Pages: 1