docs/UPGRADING.md
Follow these instructions if upgrading from a previous version of Roundcube Webmail. We recommend to carefully backup the existing installation as well as the database before going through the following steps.
There is a shell script (for unix based systems) that does the job for you. To use it, unpack the archive of the new Roundcube version to a temporary location (don't replace the Roundcube installation you want to update) and cd into that directory. From there, run the following command in a shell:
./bin/installto.sh <TARGET-FOLDER>
For <TARGET-FOLDER> you specify the path to the Roundcube installation
which should be updated. The update script will then copy all new files to the
target location and check and update the configuration and database schema.
After all is done, the temporary folder with the new Roundcube files can be
removed again.
WARNING: Make sure files have proper owner/group for your setup. If you use
tar to extract the package, --no-same-owner option might be helpful.
WARNING: See Post-Upgrade Activities section below.
WARNING: If you use MySQL < 5.7.7 or MariaDB < 10.2.2 make sure to configure it with:
innodb_large_prefix=1
innodb_file_per_table=1
innodb_file_format=Barracuda
If you don't have shell access to the Roundcube installation or if do not run it on a unix system, you need to do the following operations by hand:
bin/SQL/public_html/program/installer/config/defaults.inc.phpconfig/mimetypes.phpskins/plugins/vendor/php composer.phar update --no-dev.composer.json file by moving the items from "suggest" to the "require"
section (remove the explanation texts after the version!).php composer.phar update --no-dev../bin/install-jsdeps.sh script.npm install../bin/update.sh from the commandline OR
open http://url-to-roundcube/installer.php in a browser and choose "3 Test config".
To enable the latter one, you have to temporary set enable_installer
to true in your local config/config.inc.php file.enable_installer is set to false again../bin/indexcontacts.sh.temp_dir are removed. Since this version we use constant filename
prefix and do not remove files not starting with "RCMTEMP".public_html directory as a document root.Versions older than 0.9 were supporting SQLite v2 only. Newer versions require database in v3 format. The best what you can do is to convert database file to the new format using command line tools:
sqlite OLD.DB .dump | sqlite3 NEW.DB
In case you need to only update the database schema you can use ./bin/updatedb.sh script.
For example, to update the Roundcube core database run:
./bin/updatedb.sh --package=roundcube --dir=SQL