We recommend a full backup before the installation. In the most common case, just delete the folder with the previous version redmine/plugins/redmineup_cms
and copy the new version to the same folder redmine/plugins/redmineup_cms
Note: All data will be saved after updates from previous versions.
Here are common steps for CMS plugin upgrade (all commands should be executed from Redmine app root folder ex. /var/www/redmine
, that folder contains config.ru
file)
Delete the previous version
cd /var/www/redmine rm -fr plugins/redmineup_cms
Copy and unarchive new version
cp redmineup_cms-[version]-light.zip plugins/ cd plugins unzip redmineup_cms-[version]-light.zip
Install required gems
cd /var/www/redmine bundle install
Migrate plugin tables
bundle exec rake redmine:plugins NAME=redmineup_cms RAILS_ENV=production
Restart Redmine app
For Phusion Passenger just touch restart.txt
file
touch tmp/restart.txt