Hello, your problem is the non-existant function __DBPASSWORDFUNCTION__ as you might have figured from the Error message. Try replacing with
Code:
$DATABASE_PASSWORD_FUNCTION = "PASSWORD";
which will result in this sql statement
Code:
SELECT password AS passwd1, PASSWORD('mypassword') AS passwd2 FROM timesheet_user WHERE username='admin' which is valid.
You may also choose to use a different password function such as md5 or sha1 but if you followed the manual install you will notice the default password is hashed with PASSWORD
Code:
INSERT INTO user VALUES ('admin', 10, PASSWORD('mypassword'), '.*', 'Timesheet', 'Admin', '', '', '0.00', '', 'OUT', '1'); Hope this is helpful to someone, even though it's 2 years late.
Bookmarks