Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
define("PLOGGER_DB_HOST","xxxmysqlxxx.secureserver.net");
and not:define("PLOGGER_DB_HOST","localhost");
error_reporting(E_ERROR);
Posted By: ahawksJust a follow up with some more info I've found.
According to the MySQL 5.0 manual, http://dev.mysql.com/doc/refman/5.0/en/old-client.html , the "Client does not support authentication protocol requested by server" message is because MySQL 4.1.1 and above use a different PASSWORD() encryption technique, so any old mysql libs will fail when they try to use the outdated PASSWORD() call.
Apparently, the solution is to either update your libmysql.dll / .so, or update the mysql.user table:
update mysql.user set password=OLD_PASSWORD('password') where user='your username';
1 to 12 of 12