Search
Results (18298)
- Plugins: RE: Projects Tree View Plugin - Version 0.0.1
- Here's the patch for the 404 problem written ... if others would advise if this resolves the issue completely your's.
- Open discussion: RE: how to show Custom fields for Spent time?
- Turns out that the issue had already been created: http://www.redmine.org/issues/6797
- I've used redmine 0.9.1, 1.0 RC with PostgreS ... lid (ActiveRecord::JDBCError: ERROR: column "issues.id" must appear in the GROUP BY clause or b ... cker_id AS tracker_id FROM (SELECT DISTINCT "issues".id FROM "issues" LEFT OUTER JOIN "projects" ON "projects".id = "issues".project_id LEFT OUTER JOIN "issue_statuses" ON "issue_statuses".id = "issues".status_id LEFT OUTER JOIN "trackers" ON "trackers".id = "issues".tracker_id WHERE (((projects.id = 2 OR (projects.lft > 7 AND projects.rgt < 10))) AND issue_statuses.is_closed='f') AND (((projects.stat ... ct_id FROM enabled_modules em WHERE em.name='issue_tracking')) AND (1=0 OR projects.is_public = ... But I do not know whom to ask about this.
- Plugins: RE: Plugin Migration issue - problem with version numbers
- Well, my migrations are named @20100922201050 ... ed? Other than that, I'm out of ideas, sorry.
- Help: RE: 0.9 => 1.0.3 upgrade, cannot add new issue
- I don't see anything bad with that, and I'm a little out of ideas, sorry.
- I have a public project that I have setup for ... the Redmine project, but I can create a new issue all the same. I might be missing a setting somewhere, but I just can't find it. Thanks, C
- Open discussion: RE: upgrade 0.7 - latest
- Nevermind. The issue was related to il8n uninstalling it did the ... .4.2 </pre> the upgrade seems to work now
- Plugins: RE: Plugin Migration issue - problem with version numbers
- The full path is <pre> redmine/vendor/plugins/redmine_budget/db/ </pre>
- Help: RE: 0.9 => 1.0.3 upgrade, cannot add new issue
- > How did you upgrade, did you download the p ... ? yes, there is a is_default set to 1 for IssuePriority in the enumerations table > What does Issue.new run in RAILS_ENV=production script/console in your redmine directory yield? <pre> ?> Issue.new => #<Issue id: nil, tracker_id: 0, project_id: 0, subje ... rake db:migrate RAILS_ENV=production </pre>
- Plugins: RE: Plugin for Tests
- I mean: undefined method `testsets' for #<Issue:0xbc226c0> .... (Sorry.)
- Plugins: RE: Plugin for Tests
- I missed the error: I get undefined met ... Class:0x65b6f38> when I try to remove the issue from the testset Thanks again.
- Plugins: RE: Plugin for Tests
- Hello again, at first thank you all for yo ... tten above I need a n:m-relation between the issues and my testsets. I can add an issue to a testset, but I'm not able to remove it ... sible for this actions: @ def add_remove_issues_to_testset @testset = Testset.find(params[:id]) @issues = Issue.find(:all, :conditions=>{:project_id=>@project}, :order => 'ID') @issues_assigned_to_testset = @testset.issues.find(:all) end def add_issue_to_testset @testset = Testset.find(params[:testsetid]) @issue = Issue.find(params[:id]) @testset.issues << @issue redirect_to :action => "add_remove_issues_to_testset", :id => @testset, :project_id => @project end def remove_...
- Plugins: RE: Plugin Migration issue - problem with version numbers
- What's the full path from the top redmine directory?
- Hi, we are starting to use redmine. We would like to modify the Issue summary, something like adding more queries. ... plugin? can we write a plugin that modifies Issue summary? Thanks!!!
- Open discussion: RE: upgrade 0.7 - latest
- Unfortunately the process didn't succeed as e ... or "settings" and also if I select a single issue. <pre> ArgumentError in Users#index S ... =>"", "Cache-Control"=>"no-cache"} </pre>
- Plugins: RE: XLS export plugin
- I've just installed the plugin and when I try to export issue via the "XLS" or "XLS+" link I get the following error: <pre> Processing IssuesController#xls_export_action (for xxxxxxxxxx ... city_token"=>"xxxxxxxxxxxx=", "controller"=>"issues" NoMethodError (undefined method `count' ... _plugin v006 How can I solve this problem?
- Plugins: RE: Plugin Migration issue - problem with version numbers
- I actually started a fresh, clean install of ... , re-created and re-ran the migrations, same issue again. Here's how my migration files look ... in migrations is attached below, if it helps.
- Plugins: RE: Plugin Migration issue - problem with version numbers
- Jinny Wong wrote: > I've also tried to rename my file as 172_table_a.rb, I still got the same issue. Am I doing anything wrong here? The poin ... ng very funny/broken in your current install.
- Plugins: RE: Plugin Migration issue - problem with version numbers
- Hi Felix, It looks like this (truncated in ... file as 172_table_a.rb, I still got the same issue. Am I doing anything wrong here?
- Plugins: RE: Plugin Migration issue - problem with version numbers
- Hi Felix, A select count(version) on my <p ... file as 172_table_a.rb, I still got the same issue. Am I doing anything wrong here?
- Plugins: RE: Plugin Migration issue - problem with version numbers
- You can't change migration numbers after havi ... oes your @schema_migrations@ table look like?
- This plugin like a light CRM which you can ma ... list * Contact notes * Contact attaches * Issues related to contacts (in contact page and in issue page) * Basic deals info * Tags * Multi l ... http://db.tt/XYm2e2P! !http://db.tt/cKhFkbU!
- Greetings all. My apologies if this has been posted before, but I was unable to search for this issue, hence I'm posting it here now. I'm tryin ... ll. I'm not very sure how to resolve this issue, much appreciation and thanks in advance to whoever is able to assist me here.
- Open discussion: RE: Importing XML data from Basecamp to Redmine
- About escaping those quotes, in our case they ... some function that works with all multibyte issues.
- Open discussion: RE: Importing XML data from Basecamp to Redmine
- Thanks for these scripts. They are great help. I found some issues, mainly due to character escaping. 1. We ... f :name" like told in http://www.redmine.org/issues/show/630 2. We had quotes in the content ... like this: src << %{ todos['#{id}'] = Issue.new :subject => '#{content[0..255]}', :descr ... so there might be some better way to do that.