So the session table isn't being created when you use sqlite as the database type. This patch fixes the problem and allows successful login.
--- sqlite.initial.sql.orig 2005-10-30 09:54:13.000000000 -0800 +++ sqlite.initial.sql 2005-10-30 09:08:17.000000000 -0800 @@ -78,3 +78,19 @@ language varchar(5) NOT NULL default 'en', preferences text NOT NULL default '' );
+-- --------------------------------------------------------
+-- +-- Table structure for table sessions +--
+CREATE TABLE session (
+)
Adhamh