Can't install plugins on redmine war
Added by vincenzo di nino over 11 years ago
I'm running tomcat 7.0.40 and have deployed redmine 2.3.1 and also 2.0.3. I've made the WEB-INF/public/plugin_assets directory writable and then copied the plugin into this directory.
After that, i've restarted tomcat but i can't see anything under plugin's list in redmine>administrator>plugins
What i'm missing?
Thank you very much
Replies (1)
RE: Can't install plugins on redmine war - Added by Tide _ over 11 years ago
You have put the plugin in the wrong location.
Move the plugin to the correct directory.
http://www.redmine.org/projects/redmine/wiki/Plugins
1. Copy your plugin directory into #{RAILS_ROOT}/plugins (Redmine 2.x) or #{RAILS_ROOT}/vendor/plugins (Redmine 1.x).
2. If the plugin requires a migration, run the following command to upgrade your database (make a db backup before).
2.1. For Redmine 1.x:rake db:migrate_plugins RAILS_ENV=production
2.2. For Redmine 2.x:rake redmine:plugins:migrate RAILS_ENV=production
3. Restart Redmine