Comment 6 for bug 900190

Revision history for this message
Eric Forgeot (eforgeot) wrote :

hello,

you're not stuck. Roundcube upgraded to sqlite3 at least from version 0.9.

Just download latest roundcube, and migrate your current installation (see http://trac.roundcube.net/wiki/Howto_Upgrade)

Then if you got an error like the one I got when using the migration tool ("file is encrypted or is not a database"), migrate your sqlite2 db to sqlite3 by hand :

mv db.sqlite db.sqlite2-old
sqlite db.sqlite2-old .dump | sqlite3 db.sqlite

It worked for me.