Closed bviktor closed 7 years ago
Okay I think I solved it with something like this (I think not all of the steps are necessary but I was lazy to find out the exact details):
cd /opt/redmine
export PATH=${PATH}:/usr/local/bin
systemctl stop thin.service
RAILS_ENV=production rake redmine:plugins:migrate NAME=redmine_default_assign VERSION=0
rm -rf /opt/redmine/plugins/redmine_default_assign
rake generate_secret_token
RAILS_ENV=production rake db:migrate
RAILS_ENV=production rake redmine:plugins:migrate
rake tmp:cache:clear
rake tmp:sessions:clear
systemctl start thin.service
I need to uninstall this plugin coz 3.4 will have this feature built-in. If I run
and restart Redmine, it produces an internal server error (500) when I try to open project settings for any project.
Please advise.