I am having a problem with moving my sqlite database on my Rouncube server running on a Leap15.2 system (I have a manual install and want to move it to the Offical openSUSE package so it updates properly and automatically). To track down the issue more clearly I have done another fresh install on a Tumbleweed system. Changed the permissions and set up the database which I unimaginativly called ‘database’. I then did the following tests. Either moving or copying the database and then appropriately editing “config.inc.php” to point to reflect the new path.
From a completely working stytem.
ProgressTM:/srv/www/roundcubemail # mv database database2
ProgressTM:/srv/www/roundcubemail # pico config/config.inc.php
ProgressTM:/srv/www/roundcubemail #
It was still working. :good:
ProgressTM:/srv/www/roundcubemail # cp database2 database3
ProgressTM:/srv/www/roundcubemail # pico config/config.inc.php
ProgressTM:/srv/www/roundcubemail #
This broke it. :bad: Returns “Invalid Request. No data was saved” when attempting to logon via a webpage.
ProgressTM:/srv/www/roundcubemail # mkdir db
ProgressTM:/srv/www/roundcubemail # mv database2 db
ProgressTM:/srv/www/roundcubemail # pico config/config.inc.php
ProgressTM:/srv/www/roundcubemail #
This also broke it. :bad: Returns “Invalid Request. No data was saved” when attempting to logon via a webpage.
But moving it back makes it work again.
I can browse all database versions with sqlitebrowser, no problem.
Any explanation, ideas or suggestions would be greatfully recieved.