Questions tagged [redmine]

Redmine is a flexible project management web application. Written using the Ruby on Rails framework, it is cross-platform and cross-database.

Redmine

Redmine a flexible project management web application written using Ruby on Rails framework.

The community has grown in the last few years, making it one of the most used project management tools. This has also given Redmine a great list of plugins, customization and support from the community.

Redmine is open source with its main repository on SVN. For cloning there are also repositories on GitHub and on Bitbucket (for Mercurial users).

Feature Overview

  • Multiple projects support
  • Flexible role based access control
  • Flexible issue tracking system
  • Gantt chart and calendar
  • News, documents & files management
  • Feeds & email notifications
  • Per project wiki
  • Per project forums
  • Time tracking
  • Custom fields for issues, time-entries, projects and users
  • SCM integration (SVN, CVS, Git, Mercurial and Bazaar)
  • Issue creation via email
  • Multiple LDAP authentication support
  • User self-registration support
  • Multi-language support
  • Multiple databases support
  • REST API
  • Plugins

Documentation & Links

1972 questions
7
votes
2 answers

Anything speaking against the bitnami.org Ruby/Rails/Redmine Stack?

I am looking to set up a Redmine server on a Windows virtual machine on my local workstation. (Background in this related question.) I have zero knowledge of Ruby nor Rails, and while Redmine may be the opportunity to dip into those platforms…
Pekka
  • 442,112
  • 142
  • 972
  • 1,088
7
votes
7 answers

Internal bug tracking tickets - Redmine, Trac, or JIRA

I've been looking at setting up Redmine, Trac, or JIRA to track issues. I want to be able to have my development team create internal tickets that are never seen by clients, while clients can create/edit tickets that are seen by the internal…
Tai Squared
  • 12,273
  • 24
  • 72
  • 82
7
votes
1 answer

You cannot specify the same gem twice with different version requirements

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…
Robinho
  • 1,011
  • 2
  • 10
  • 17
7
votes
3 answers

Cannot run aws.push for local repository head

I'm trying to deploy a Ruby project (redmine) on an Elastic Beanstalk server using the Elastic Beanstalk Command Line Interface, but when I try to launch the environment i get the following error: $ eb start Starting application "redmine". Would you…
wesley.ireland
  • 643
  • 3
  • 12
  • 21
7
votes
2 answers

uninitialized constant RAILS_DEFAULT_LOGGER

I'm trying to install a plugin in redmine, mylyn. I get the following error: uninitialized constant RAILS_DEFAULT_LOGGER 0 /home/redmine/plugins/redmine-plugin/init.rb 3 1 /home/redmine/lib/redmine/plugin.rb 129 in `load' …
Falci
  • 1,823
  • 4
  • 29
  • 54
7
votes
1 answer

Send email from Redmine Plugin

I am writing a Redmine plugin. I already have the model, view and controller in place. Whenever someone creates, updates or deletes my model I want to send an email to people in a certain group. (Similar to emails sent out by Redmine when someone…
AAK
  • 439
  • 4
  • 11
6
votes
3 answers

I've added a module in redmine, how can I enable it for many projects at once?

I've got all these great new plugins enabled, and I can enable them on any given project. However, I don't see a way to add/remove them from many projects at once. Perhaps I need a module management plugin? ;-)
Allen Hancock
  • 579
  • 4
  • 6
6
votes
2 answers

Mantis and Redmine, which one is better for issue tracking?

I consider to use Mantis or Redmine to manage projects. (Issue Tracking) I know both are really good. For now, I won't connect it with SVN or Git. (It may happen later) The main purpose is issue tracking on business with co-workers. Please recommend…
Kyoungwon Lee
  • 129
  • 1
  • 1
  • 7
6
votes
4 answers

Redmine and SVN: How to link a Revision to an Issue AFTER the commit has happened?

So we have Redmine successfully integrated with SVN. It's a mature integration (a few months now). Post-commit-hook updates the repository in Redmine. Comments in SVN commit get beautifully imported into Redmine, which is able to create links…
Adriano Carneiro
  • 57,693
  • 12
  • 90
  • 123
6
votes
2 answers

Reducing Redmine's memory usage - Low Hanging Fruit

I am running a Redmine instance with Passenger and Nginx. With only a handful of issues in the database, Redmine consumes over 80mb of RAM. Can anyone share tips for reducing Redmine's memory usage. The Redmine instance is used by 3 people and I am…
Natan Yellin
  • 6,063
  • 5
  • 38
  • 57
6
votes
1 answer

Activating Redmine's roadmap

I recently installed Redmine and started configuring a plethora of items such as roles, statuses, projects, issues, and that kind of good stuff. But to my surprise I found no section for clustering issues into roadmaps. I've searched everywhere in…
Jean-Pierre Chauvel
  • 946
  • 2
  • 9
  • 21
6
votes
0 answers

Redmine/puma crashed with undefined method `stop' for nil:NilClass (NoMethodError)

I've an error on my Puma Application Server which runs Redmine application. The puma starts correctly and quickly next http calls return this error ... I do not find answer on Google how to handle this. Here's the error message : ==>…
David
  • 755
  • 1
  • 9
  • 22
6
votes
1 answer

Bundler cannot continue; error parsing 'Gemfile': ()

While using these installation instructions, https://www.redmine.org/projects/redmine/wiki/HowTo_Install_Redmine_30x_on_Ubuntu_1404_with_Apache2_Phusion_Passenger_MySQL_Subversion_and_Git_%28Gitolite%29, I ran into an issues when I performed the…
Louis Gillette
  • 65
  • 1
  • 1
  • 7
6
votes
3 answers

Has anyone successfully integrated chat with redmine?

I was thinking that it would be cool if I could have a chat app as part of the interface for my Redmine installation. I did find a plugin that works with Juggernaut but it seems a while since there has been any downloads or updates of it and I'm…
Zac
  • 12,637
  • 21
  • 74
  • 122
6
votes
1 answer

How to correctly instantiate a model in plugin init.rb?

How do you correctly initialize Redmine plugins that need to instantiate a model (read a database record) defined in the plugin itself? For example, I have a plugin my_redmine_plugin which comes with a model MyPluginModel. On plugin initialization,…