Difference between revisions of "Install plugins for redmine"
|  (Created page with "<yambe:breadcrumb>Redmine_configuration|Redmine configuration</yambe:breadcrumb> =Install plugins for redmine=  To install following plugins: *AgileDwarf *Banner in redmine us...") | m | ||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| [[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Web based tools or applications]] > [[Redmine configuration]] > [[Install plugins for redmine]] | |||
| ==AgileDwarf and Banner== | |||
| To install following plugins: | To install following plugins: | ||
| Line 20: | Line 21: | ||
| #:</pre> | #:</pre> | ||
| #Open the redmine portal and check that additional modules are available for use for existing projects or for new projects.  Note that new modules are not automatically enabled for a project.  An administrator has to enable use of newly installed plugins before they are available for use within a project. | #Open the redmine portal and check that additional modules are available for use for existing projects or for new projects.  Note that new modules are not automatically enabled for a project.  An administrator has to enable use of newly installed plugins before they are available for use within a project. | ||
| ==Charts2 plugin== | |||
| To install Charts2 plugin use: | |||
| <pre> | |||
|             cd {REDMINE_ROOT}  | |||
|             git clone git://github.com/pharmazone/redmine_charts2 plugins/redmine_charts2  | |||
|             cd plugins/redmine_charts2  | |||
|             git checkout redmine21  | |||
|             cd {REDMINE_ROOT}  | |||
|             git clone git://github.com/pullmonkey/open_flash_chart.git plugins/open_flash_chart  | |||
|             cd {REDMINE_ROOT}  | |||
|             cp -r plugins/open_flash_chart/assets public/plugin_assets/open_flash_chart  | |||
|             rake redmine:plugins RAILS_ENV=production | |||
| </pre> | |||
| Steps have been learned from http://www.redmine.org/plugins/redmine_charts2 | |||
| =Troubleshooting= | |||
| ==AgileDwarf plugin== | |||
| Burndown chart plugin has bug which can be fixed using steps mentioned at https://github.com/iRessources/AgileDwarf/issues/36 | |||
| =Additional plugin installation= | |||
| Description of how to install or uninstall a plugin is available at  | |||
| http://www.redmine.org/projects/redmine/wiki/Plugins | |||
| List of all available plugins for redmine is available at  | |||
| http://www.redmine.org/plugins?page=1 | |||
| [[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Web based tools or applications]] > [[Redmine configuration]] > [[Install plugins for redmine]] | |||
Latest revision as of 18:36, 28 July 2022
Home > CentOS > CentOS 6.x > Web based tools or applications > Redmine configuration > Install plugins for redmine
AgileDwarf and Banner
To install following plugins:
- AgileDwarf
- Banner
in redmine use following steps:
- Install git using 'yum -y install git'
- Login as redmine user using 'su - redmine'
- Install plugins using following commands:
- cd redmine-2.2.3
- cd plugins
- git clone https://github.com/iRessources/AgileDwarf.git
- git clone https://github.com/akiko-pusu/redmine_banner
- cd ..
- killall -9 ruby
- rake redmine:plugins:migrate RAILS_ENV=production
- ruby script/rails server webrick -e production -d
 
 
- Open the redmine portal and check that additional modules are available for use for existing projects or for new projects. Note that new modules are not automatically enabled for a project. An administrator has to enable use of newly installed plugins before they are available for use within a project.
Charts2 plugin
To install Charts2 plugin use:
            cd {REDMINE_ROOT} 
            git clone git://github.com/pharmazone/redmine_charts2 plugins/redmine_charts2 
            cd plugins/redmine_charts2 
            git checkout redmine21 
            cd {REDMINE_ROOT} 
            git clone git://github.com/pullmonkey/open_flash_chart.git plugins/open_flash_chart 
            cd {REDMINE_ROOT} 
            cp -r plugins/open_flash_chart/assets public/plugin_assets/open_flash_chart 
            rake redmine:plugins RAILS_ENV=production
Steps have been learned from http://www.redmine.org/plugins/redmine_charts2
Troubleshooting
AgileDwarf plugin
Burndown chart plugin has bug which can be fixed using steps mentioned at https://github.com/iRessources/AgileDwarf/issues/36
Additional plugin installation
Description of how to install or uninstall a plugin is available at http://www.redmine.org/projects/redmine/wiki/Plugins
List of all available plugins for redmine is available at http://www.redmine.org/plugins?page=1
Home > CentOS > CentOS 6.x > Web based tools or applications > Redmine configuration > Install plugins for redmine

