So when I try to login to roundcube I get a message saying that:
"Your session is invalid or expired"
What could cause this? (BTW, its very annoying that when I click on this message it disappears. Having to view the HTML source to copy the error text is annoying.)
I'm running 10.4.2 Server which ships with sqlite3. I modified the config to be this:
$rcmail_config['db_dsnw'] = 'sqlite://./sqlite.db?mode=0646'
However when I use sqlite3 to inspect the database it appears that it was created using sqlite2. After hitting the index.php site for the first time the sqlite.db has been created for me, but there are problems.
localhost% sqlite3 sqlite.db SQLite version 3.1.3 Enter ".help" for instructions sqlite> .databases Error: file is encrypted or is not a database sqlite> .read SQL/sqlite.initial.sql CREATE TABLE cache ( cache_id integer NOT NULL PRIMARY KEY, user_id integer NOT NULL default 0, session_id varchar(32) default NULL, cache_key varchar(128) NOT NULL default '', created datetime NOT NULL default '0000-00-00 00:00:00', data longtext NOT NULL ); SQL error: file is encrypted or is not a database
Config Mac OS X 10.4.2 sqlite3 php5 Apache/1.3.33
Adhamh