Search
Results (18292)
- Help: RE: Duplicate a project?
- I'm not sure but you cannot duplicate a project. But you can copy issues between projects.
- Is there a way to duplicate a existent project? Copying all issues?
- Open discussion: RE: How to prevent users Log time on closed issues?
- Im using redmine-3.0.0 and the default role reporter cannot log time on closed issues.
- *Hello,* *I wrote the following piece of c ... eateWithApiKey(uri, apiAccessKey); /* get issues */ IssueManager issueManager = mgr.getIssueManager(); List<Issue> issues = issueManager.getIssues(projectKey, queryId); for (Issue issue : issues) System.out.println(issue.toString()); /* get wiki pages */ ... from the output below, I get a list with the issues but there is an authentication error when ... tml#StaticLoggerBinder for further details. Issue [id=13, subject=android] Issue [id=12, subject=mptcp] Issue [id=11, subject=Internal] ...
- Hi How I can prevent users Log time on closed issues?
- Help: RE: Can't get Redmine to work under Apache2
- James H wrote: > i use > "Require all gran ... b to Apache your apache config is not the issue. I was talking about permissions on the dir ... nd. <pre> chmod a+x -R /opt/redmine </pre>
- Help: RE: Redmine 3.0.1 from 2.6.0
- Hmmm.. interesting. OK so, I have the emai ... mail addresses user id index # replace move issues permission db migrate results in success ... ? Not sure if I can safely skip this one too.
- Hello, I'm trying to update my dev box fro ... dles already existing tables... so whats the issue???
- Dears, I need to allow issues assignment only to groups. I do not want to see the list os users to assign a issue. Is it possible? Thanks in advance.
- Plugins: RE: CKEditor: What should I know about it?
- Hi, I have the problem that xml/html code is ... t </xml> does anyone experience the same issue? https://github.com/a-ono/redmine_ckeditor/issues/158
- Does anyone know whether the following plugin ... ps://github.com/thorin/redmine_local_avatars/issues/4) * sidebar_hide * redmine crm Best Roman
- Development: RE: Extend a Issue Model Function
- What's in your @init.rb@ file? I'm more fa ... e this: <pre> require_dependency 'Plugin/issue_patch' </pre>
- Help: RE: Update from Redmine 2.6.2.stable to 3.0.1 issues
- it seems you have another plugin *global_role ... n does not support activesupport version 4.2.
- Help: RE: Update from Redmine 2.6.2.stable to 3.0.1 issues
- Hi thanks for your reply. I did not notice ... oving the extra_queries plugin, I still have issues [root@tm-redminedev redmine]# bundle exe ... hat is something related with activesupport
- Help: RE: Update from Redmine 2.6.2.stable to 3.0.1 issues
- Hi, The plugin *extra_queries* says that is ... ble with Redmine 2.6.x, 2.5.x, 2.4.x, 2.3.x
- Help: RE: Redmine email log
- If your Redmine is installed on a Debian Linu ... it sends a mail: <pre> Rendered mailer/_issue.text.erb (7.8ms) Rendered mailer/issue_edit.text.erb within layouts/mailer (12.6ms) Rendered mailer/_issue.html.erb (1.3ms) Rendered mailer/issue_edit.html.erb within layouts/mailer (4.6ms) ... not found out what causes this error. A.T.
- I installed Bitnami Redmine 2.6.1. And want to use CodeReview Plugin, but it had some issue when i installed it, fortunately, in "Admini ... gins: redmine_code_review 0.6.5
- Hi all, I'm trying to migrate my Redmine s ... mine/plugins/extra_queries/lib/extra_queries/issue_query_patch.rb:9:in `block in included' /va ... mine/plugins/extra_queries/lib/extra_queries/issue_query_patch.rb:5:in `class_eval' /var/www/html/redmine/plugins/extra_queries/lib/extra_queries/issue_query_patch.rb:5:in `included' /var/www/htm ... ects/redmine/wiki/RedmineUpgrade Any help?
- Help: RE: An odd request: login without a username/password
- David Gessel wrote: >... We share the same mindset on these issues :-)
- Open discussion: RE: Any way to change issue status only if attachment uploaded?
- We are using 3.0 because we need to have a default statuses for each issue tracker and it's available only in 3.0. Me ... oesn't support 3.0. I hope one day it will...
- Hi all, From my search, I found an old plu ... would accomplish what I'm trying to do. The issue is, we are running Redmine 2.6.0 in a produc ... 0.0.7 </pre> Thanks, John
- Open discussion: RE: Any way to change issue status only if attachment uploaded?
- hi, which version do you use? try this p ... and rise a warning if the user hasn't.
- Hi, suddenly I get errors when Redmine tri ... g I see in the logs: <pre> Started PUT "/issues/2721" for xx.xx.xx.xx at 2015-04-01 19:21:03 +0200 Processing by IssuesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"xxxxx", "issue"=>{"is_private"=>"0", "project_id"=>"75", "t ... to_id"=>"8", "fixed_version_id"=>"", "parent_issue_id"=>"", "start_date"=>"2015-04-01", "due_da ... t user: xxxxxxxxx (id=8) Rendered mailer/_issue.text.erb (5.9ms) Rendered mailer/issue_edit.text.erb within layouts/mailer (10.2ms) Rendered mailer/_issue.html.erb (1.9ms) Rendered mailer/issue_edit.html.erb within layouts/mailer (5.1ms) ... irected to http://server.homecomfort.at:3000/...
- Help: RE: An odd request: login without a username/password
- Thanks to both of you. I think one of the issues we have is really don't want to authenticat ... the site goes down--so we do want the emails.
- Hello, I created a Plugin to import some s ... s required to extend a Model function in the Issue-Model (the update_closed_on). So I checked ... a Plugin in Plugins folder - Create a File issue_patch.rb in the lib folder from the Plugin - Add the following code to the 'issue_patch.rb' <pre> require_dependency 'issue' module IssuePatch def self.included(base) base.se ... mized_id = #{self.id} AND customized_type = 'Issue' AND custom_field_id = 36").first if ... test.save end end end end Issue.send(:include, IssuePatch) </pre> It seems to me that the code in my issue_patch was never called when the 'update_clos ... ed. Can anyone see a Problem un my function?