13) I have created the MySQL database user properly with all rights and setup Conf.php correctly, when I login I get an error saying; "Client does not support authentication protocol requested by server; consider upgrading MySQL client"
From OrangeHRM
You are probably using PHP4 with a MySQL client older than 4.1 which does not support the password hash algorithm used by post-MySQL 4.1 databases. The work around for the problem would be to use the following commands on MySQL prompt;
SET PASSWORD FOR '<username>'@'%' = OLD_PASSWORD('<password>');
OR
SET PASSWORD FOR '<username>'@'localhost' = OLD_PASSWORD('<password>');
