redmine-plugins

Redmine EVM plugin is not working?

喜你入骨 提交于 2020-01-03 04:26:25
问题 Im a redmine user.EVM plugin in redmine is not working when the banner is enabled.Anyone please tell how to resolve this issue ? Started GET "/redmine/admin/plugins" for 10.222.185.22 at 2014-03-10 06:42:05 +0000 Processing by AdminController#plugins as HTML Current user: admin (id=1) Rendered admin/plugins.html.erb within layouts/admin (10.8ms) Rendered admin/_menu.html.erb (12.7ms) Rendered plugins/redmine_banner/app/views/banner/_project_body_bottom.html.erb (0.1ms) Rendered plugins

Ubuntu rake aborted! NameError: uninitialized constant ActionDispatch::XmlParamsParser

懵懂的女人 提交于 2019-12-31 03:58:04
问题 I'm trying to install redmine's plugins on a machine with 16.04 ubuntu. Right now I'm trying to install agile plugin. I received the official documentation about how to install the plugin. I followed the step-by-step installation and I get stuck with an error. Important: I'm using Ruby 2.3.1. Steps Download and unzip on plugins folder cd /var/www/redmine and bundle install --without development test --no-deployment (I got some errors here because of the mysql, nokogiri, and others gem.. but

Redmine3.3.0-1 Bundle install server 500 Error

核能气质少年 提交于 2019-12-25 12:55:14
问题 I installed BITNAMI RedMine 3.3.0-1. After installing version Plugins, 500 error appears on the server. I could not solve this. I did everything until bundle install, but I get an error. [enter image description here][1] Web application could not be started It looks like Bundler could not find a gem. Maybe you didn't install all the gems that this application needs. To install your gems, please run: bundle install If that didn't work, then the problem is probably caused by your application

mysql2 gem not loaded installing redmine-agile

佐手、 提交于 2019-12-25 03:22:20
问题 I'm trying to install the Redmine Agile plugin, and I can't get through step 4: /var/www/html/redmine$ sudo bundle exec rake redmine:plugins NAME=redmine_agile RAILS_ENV=production (in /usr/share/redmine) rake aborted! Gem::LoadError: Specified 'mysql2' for database adapter, but the gem is not loaded. Add `gem 'mysql2'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord). /usr/share/redmine/lib/plugins/acts_as_activity_provider/init.rb:2:in `block in <top

Auto login of an PHP app and Bitnami Redmine

最后都变了- 提交于 2019-12-24 18:06:09
问题 Is there any possibilities that when I log in to my PHP app, I can automatically logged in to Bitnami Redmine and vice versa? 回答1: Sounds like a session sharing... I implemented the similar for WordPress, that is you need: Patch Rails to make them store sessions in JSON (not Ruby-specific Marshal). I did this in my RedPress plugin for Redmine - so you can use it. Use Rails session in your PHP app. I did this in my WordMine plugin for WordPress - so you can use it as a sample. 来源: https:/

You cannot specify the same gem twice with different version requirements

风流意气都作罢 提交于 2019-12-21 12:41:49
问题 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

Change value of custom field in Redmine hook

筅森魡賤 提交于 2019-12-19 03:46:05
问题 The problem: My issues currently have 3 custom fields, let's say FieldA (select list), FieldB (irrelevant), and FieldC (text). What needs to happen is that on save, FieldC takes the value of <FieldA>-<date in Ymd>-<number from database> As an example, let's assume that FieldA has the value "Test", and today is the 8th of Jan 2015. FieldC should then be Test-20150108-001 where 001 comes from a custom table in the database, that's unique per value of FieldA, and resets every year. What I've

Generating a query fails for integration of Redmine and Mylyn in eclipse

青春壹個敷衍的年華 提交于 2019-12-14 03:47:30
问题 I installed the Redmine-Mylyn-Connector in Eclipse and had our admin install the Mylyn-Plugin for Redmine. The connection to Server seems to work: When I try to add a query, I receive a Server Error: . Unfortunately no more details are available. What are potential reasons for this error, and how can I solve the problem? 回答1: There might be useful details in the Error Log. Open the Error Log view ( Alt + Shift + Q then L , or use Window > Show View... ). I would clear the log first (using the

stack level to deep Rails 2.3.14

可紊 提交于 2019-12-13 21:03:16
问题 I'm developing a plugin for a management framework and when I start the webrick server in the development mode, a strange error raises(stack level too deep). It happens when an action (e.g. the show action) starts to render a template. Unfortunately i have no idea why this is happen. SystemStackError in Stories#show Showing vendor/plugins/stories/app/views/stories/show.rhtml where line #5 raised: stack level too deep Extracted source (around line #5): 5: link_to_if_authorized 'aa', {

actionview::template::error(undefined method 'html_safe' for nil:NilClass)

限于喜欢 提交于 2019-12-13 02:32:44
问题 I am a beginer in ruby and I want to write a plugin for redmine. I have written a plugin which was running since I use 'flash[:var]' in a controller of my plugin. Now when I want to access to all my pages I have an error message that I not understand. Ruby version : ruby 1.9.3p484 Rails version : rails 3.2.19 this is the error message thank you for your answers. EDIT: this is the application_helper 回答1: It seems like you ran into situations in which you have nil values in your flash . Imagine