Project

General

Profile

Search

Results (18203)

Help: RE: Redmine and Gmail
I am using the Bitnami stack as well, runnnin ... S X Leopard. I'm running into the exact same issue, and have been pulling my hair out. Did you ... it is the same Action Mailer plug in.... 2009-05-10 01:01
Help: RE: Accessing account/show/4 results in a 500 internal server error
Just found that we have one boolean custom ... rate worked it seems there are some database issue, maybe with a custom field. > ... 2009-05-09 17:12
Help: Accessing account/show/4 results in a 500 internal server error
Hi, Some day in april we downloaded and in ... rate worked it seems there are some database issue, maybe with a custom field. So the questi ... public/500.html (500 Internal Server Error) 2009-05-09 16:51
Plugins: RE: Problem with redmine-charts plugin (with trunk)
I came across this issue also while doing a sort of plugin round-up. I've reported it by opening an "issue":http://github.com/mszczytowski/redmine_charts/issues#issue/6 on it's GitHub. Regards, Mischa. 2009-05-09 00:31
Plugins: RE: Plugin Graphs 0.1.
There's a patch on github that I'll apply today that addresses this issue. Pull the latest from there after that commit. 2009-05-08 19:44
Help: Redmine and Gmail
Hi all, I've recently installed Redmine (usi ... get a 502 exception. I managed to track the issue down in the Mongrel log file to the followin ... s fine again, anyone any idea about what the issue is? Is there another version of the actionma ... ready installed by default? Thanks, Johan 2009-05-08 16:03
Help: 500 Internal Server error when changing Tracker in safari
Redmine 0.8.3 Safari stable and public beta When trying to change tracker while creating an issue I get a 500. /!\ FAILSAFE /!\ Fri May 08 ... :10 Happening for both me and my client. 2009-05-08 13:41
Plugins: Problem with redmine-charts plugin (with trunk)
When i want to look at the charts/burndown g ... own alias: select sum(journal_details.value*issues.estimated_hours)/sum(issues.estimated_hours) as ratio_done from (select ... urnal_details_id, journals.journalized_id as issue_id from issues left join journals on journals.journalized_id = issues.id and journals.journalized_type ='Issue' left join journal_details on journals.id = ... ournal_details.prop_key = 'done_ratio' where issues.project_id in (7) and (journals.id is null ... reated_on <= '2009-03-07 23:59:59') group by issues.id) left join issues on issues.id = issue_id left join journal_details on journal_deta ... Can anyone help me out here? Thnx 2009-05-08 11:23
Help: RE: translation missing: en, field_watcher_users is invalid
Mischa, After upgrading to the trunk version (revision# 2714) the issue is been fixed as well. Thanks a lot for your support. Really appreciated -Nanda 2009-05-08 04:35
Help: RE: Error when trying to add a CustomField for User
Mischa, After upgrading to the trunk version (revision# 2714) the issue is been fixed. Thanks a lot for your support. -Nanda 2009-05-08 04:34
Help: RE: Error when trying to add a CustomField for User
Hey, Most-likely you are running on Redmine trunk < r2698...? I bet your issue is fixed with that revision... Regards, Mischa. 2009-05-07 21:41
Help: Creating new users programmatically
I've tried creating new users by talking to t ... e with one exception: When creating a new issue, the users created with the above are presen ... atcher users » is invalid </pre> And the issue won't be created. After the issue is created (without those users), I can add ... individually as watchers without a problem. 2009-05-07 20:08
Help: RE: Remove non-required fields from New Issue Screen
It seems this not possible yet. See feature #3154. 2009-05-07 16:37
Plugins: RE: Ticket grouping plugin
The first exception is because of changes tha ... pository/revisions/2694/diff/trunk/app/views/issues/_list.rhtml Its need to change @css_issue_classes(issue)@ to @issue.css_classes@. The second exception is raised when you try to change parent for list of issues to some subissue of them. I will correct both errors in next revision. 2009-05-07 15:52
Plugins: RE: Ticket grouping plugin
*change parent* method does not correctly pro ... ption when i have tried to set the parent of issue to himself <pre> ActiveRecord::ActiveRecordError in IssuesController#parent_edit Impossible move, target node cannot be inside moved tree. </pre> 2009-05-07 15:20
Plugins: RE: Ticket grouping plugin
in last version of plugin i have exception in ticket list <pre> NoMethodError in Issues#index Showing vendor/plugins/redmine_issues_group/app/views/issues/_list.rhtml where line !#44 raised: undefined method `css_issue_classes' for #<ActionView::Base:0xb6ed18e8> ... this was happened in <pre> 44: <tr id="issue-<%= issue.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= css_issue_classes(issue) %> group-<%= group_num %>"> </pre> 2009-05-07 15:05
Help: RE: Error when trying to add a CustomField for User
Note : All other Custom fields(Issues, Spent time & Projects) are fine. 2009-05-07 14:09
Plugins: RE: Issue Vote Plugin
To whom it may concern: I'll attach the lates ... s a packaged archive... Regards, Mischa 2009-05-06 19:59
Open discussion: RE: Writing plugins or altering source code???
Andrew, Tried that but not really sure wha ... C:/redmine-0.8.3/vendor/plugins/Ubik-redmine_issues_group/init.rb:2:in `evaluate _init_rb' C: ... mean anything to you? Many thanks Andy 2009-05-06 19:35
Plugins: RE: Issue Vote Plugin
label_votes: Vote(s) 2009-05-06 18:40
Plugins: RE: Issue Vote Plugin
field_votes_value: Vote(s) 2009-05-06 18:40
Plugins: RE: Issue Vote Plugin
Missing entries in the en.yml file: label_votes: Vote field_votes_value: Vote 2009-05-06 18:37
Plugins: RE: Ticket grouping plugin
Yohann Monnier wrote: > Is the last version ... the core of redmine ? Nope, it isn't. See issue #2679 for implementation details. Regards, Mischa 2009-05-06 17:51
Open discussion: RE: New Issue: Is it possible to populate the description box with a pre-defined template
I have resolved this problem by adding my own code into app/views/issues/_form.rhtml file. There are three tracke ... *Expected Results*: *Note*: ' %> <%# if issue is a new AND tracker name is 'Bug' %> <% if @issue.new_record? && (@issue.tracker.name<=>('Bug')).eql?(0) %> <%# issue description will set to bug_template in case if it is not a blank %> <% @issue.description = bug_template if @issue.description.blank? %> <% elsif @issue.new_record? %> <%# clearing description f ... blank and equals to bug_template %> <% @issue.description = '' if !@issue.description.blank? && bug_template.include?(@issue.description.gsub(/\r\n/m, "\n")) %> <% end ... u want the template to be added for each new ... 2009-05-06 16:28
Help: Versions not marked as completed
I'm using the 0.8.3 version of redmine on windows xp pro. I have set all issues for a couple of versions as 100% complete a ... t recall having this problem with that build. 2009-05-06 11:16
(16676-16700/18203)