Here is a workaround to allow you to log in.
In file: [lime-install-path]/application/core/UserIdentity.php
Look for these lines (about line 46)
else if (false || $sStoredPassword !== hash('sha256', $this->password))
{
$this->errorCode = self::ERROR_PASSWORD_INVALID;
}
and change them to:
// else if (false || $sStoredPassword !== hash('sha256', $this->password))
// {
// $this->errorCode = self::ERROR_PASSWORD_INVALID;
// }Then log in using your admin user id and any password.
Once logged in, reset your password and log out.
Change the above code back (remove the comments) and you should be able to log in normally.
Test your installation by trying to log in with an invalid password to make sure you have not left logins open.