Issue after MySQL upgrade

I have upgraded MySQL to 5.1.47 and everything seems to run fine. The only problem is the phpMyadmin in the user accounts. As root I can use phpMyAdmin without problems, when I try to open phpMyAdmin in a user account I get this error: #1251 - Client does not support authentication protocol requested by server; consider upgrading MySQL client. Does somebody know what this can be?

Yep - because InterWorx/phpMyAdmin support as far back as MySQL 3, you need to enable “old passwords” in the my.cnf file. You’ll have to edit that manually.

Add:

old_passwords=1

in the [mysqld] section and restart MySQL.

Tim

Hi Tim, that did the job:-) Thanks!