redmine-plugins

How to solve error “422:invalid authentication token” in Redmine

谁说胖子不能爱 提交于 2019-12-11 10:45:50
问题 In redmine I am getting 422:invalid authentication token and the logged in name is displayed with other user name instead of login user. There are no steps to reproduce. All of a sudden it occurs and it will be proper when I refresh the link. Please find the attached image for clear scenario. In the attached screenshot login user name is Pavithra but all of a sudden the logged in name will be displayed with other user name (Highlighted in green colour). 回答1: I ran into a similar issue for

IDE for redmine/rails and configuring the project

*爱你&永不变心* 提交于 2019-12-11 05:48:10
问题 I am actually developing a plugin for redmine, Currently using netbeans 6.9 (OS: Linux) But the problem i am facing is to get the changes i have manually restart the redmine server from console. Is there a better IDE/ Configurations? Any one who has worked in same area, can provide some guidance? Also i would like to know how to run Redmine server in development mode, so that it eases the development process. Any suggestions/Directions would be helpful, appreciated. Thanx in advance. 回答1:

Plugin migrations for Redmine: place plugin in db/migrate instead of plugin folder

a 夏天 提交于 2019-12-08 12:17:24
问题 I'm a newbie in ruby on rails and creating a redmine plugin. I created a model Allissue without using any column. Now I wanted to add a column project_name with the help of migration ./script/generate migration AddRoleToAllissue project_name:string . But it places migration in folder db/migrate named 20120722192815_add_role_to_allissue.rb instead of plugin migrate folder. I followed stack-overflow question and move migrated file to plugin folder mv ./db/migrate/20120722192815_add_role_to

You cannot specify the same gem twice with different version requirements

笑着哭i 提交于 2019-12-04 05:51:31
I have 2 plugins installed(redmine_backlogs and redmine_ldap_sync), but after upgrade of redmine_ldap_sync from 2.0.0 to 2.0.1 a Gemfile was added. Here the backlogs's Gemfile https://github.com/backlogs/redmine_backlogs/blob/v1.0.2/Gemfile and ldap sync's Gemfile https://github.com/thorin/redmine_ldap_sync/blob/2.0.1/Gemfile In both cases, the simplecov is in the test group. I tried to run bundle install --without development test but I got this error: You cannot specify the same gem twice with different version requirements. You specified: simplecov (>= 0) and simplecov (~> 0.6) This does