i am using version 2.3.1
this is what i have in book_auth:
DROP TABLE IF EXISTS book_auth;
CREATE TABLE book_auth (
ID smallint(5) NOT NULL auto_increment,
username varchar(60) NOT NULL default '',
password varchar(60) NOT NULL default '',
session varchar(32) NOT NULL default '',
last_visit int(11) NOT NULL default '0',
PRIMARY KEY (ID)
) TYPE=MyISAM;
INSERT INTO book_auth (ID, username, password, session, last_visit) VALUES (1, 'test', '773359240eb9a1d9', 'cd2c6d5e457641991d52da8fb6d87c08', 1013100791);
I did a clean install.. but I still can't login with test and 123