Search
Results (18290)
- Help: RE: Filter issues by date custom field not possible ?
- Do you check **Used as a filter** option for ... fields? I have no problem on Redmine 3.2.6.
- Hello, I have issues with a date custom field called "Support Re ... 3.2.1. Thanks for your time, Stéphane
- Open discussion: RE: How to prevent users Log time on closed issues?
- Is this not incorrect? Should the behaviour not be that logging time to closed issues is impossible? When I close an issue, I don't want developers to work on it, nor log time...
- Help: RE: Insert a custom field multiple times in same issue
- You can filter list items of custom fields when you add and edit issues with using View customize plugin The follo ... 15/04/21/000000 I hope this will help you.
- Hey there I'm having trouble with custom f ... named "serial number", which is assigned to issues involving equipment. Thing is, sometimes an issue involves more than one equipment, so I neede ... hundreds of options each time I create a new issue. Sure, since It's a text field, an option ... months later I want to search "maintenance" issues regarding only "014-17" equipment, this one ... l another option would be create a different issue for each equipment, but I'd rather avoid thi ... t would overpopulate projects with replicate issues and make Gantt visual poluted. So does a ... ion about what to do or a plugin to indicate?
- Help: RE: startup error (Internal error)
- I had that same issue now: but the unicode character was in the ... tabase tables didn't created... Amazing.
- Help: RE: 2.1.2 - Create New Issue Fails
- Pierre de LESPINAY wrote: > I had this probl ... I finally ALLOWed NULL values for the field @issues.position@. > > mysql> ALTER TABLE issues MODIFY position INT(11); > Hoping it won't ... it's because of mistake in upgrade procedure.
- Hi, As to know my server is running with P ... ue to that we are still facing compatibility issue with MySQL client library files and Redmine. ... require' </pre> Any one had or have this issue? I really looking for help in this one. Any ... --------------- Highest Regards, Andre
- Help: RE: Regarding issue attachments in activity stream
- Maybe nothing to do that. See [[RedmineProjectActivity]]
- Maybe I am missing something simple, but is t ... f displaying the uploading of attachments to issue in activity stream?
- Me again, since yesterday I have the problem ... FIELDS FROM `checklists`): 1: <% if !@issue.blank? && @issue.checklists.any? && User.current.allowed_to?( ... 4: plugins/redmine_checklists/app/views/issues/_checklist.html.erb:1:in `_plugins_redmine_checklists_app_views_issues__checklist_html_erb__565188225_109387716' ... dmine/hook.rb:96:in `call_hook' app/views/issues/show.html.erb:92:in `_app_views_issues_show_html_erb___193813700_110374272' app/controllers/issues_controller.rb:122:in `block (2 levels) in show' app/controllers/issues_controller.rb:119:in `show' lib/redmine/ ... .5 </pre> How can I remove this plugin?
- Help: RE: Redmine Task List in Visual Studio - only 25 Tasks
- Found a "work around" For anybody how's inte ... read in the documentation, a maximum of 100 issues can be accessed on a REST retriev. Not that nice but for the moment it's enough for me.
- Hi, Retrieving issues from the API, the entry total_count is a nu ... … however, is it possible to retrieve all issues without paging and with filters ?
- Hello, I created a lot of tasks in Redmine a ... ws only 25 entries. And in the header of the issues.xml there is something about a limit of 25. How can that be changed? <issues total_count="33" offset="0" limit="25" type="array">
- Hello all. I just upgraded from 3.2 to 3 ... trying to download a file attachment from an issue I get a "connection reset" in the browser. This happens to all files on all issues. I have checked the file is there and the r ... e have any suggestions ? Thanks Freddy
- Help: RE: Issues.xml not accessible
- using /redmine/ after the URL worked with your answer - thank you!
- Help: RE: Issues.xml not accessible
- > Username: Jochen; URL: http://131.1.9.118/a ... f the plugin or else. http://127.0.0.1:3000/issues.xml?assigned_to_id=me > I even don't see an issue-list when I go to [Server-IP]/issues.xml like it is documented. I also do turn o ... What did you show when access above url?
- Hello, and sorry for my English. I have a pr ... he looping occurs and eventually the browser issues a server error. After that, you can go to ... d or redirected What could be the problem?
- Help: RE: Modifying permissions of system roles from DB
- *albfan* on IRC helped me get to the answer. ... sions in the format of: <pre> --- - :view_issues - :add_issues - :add_issue_notes </pre> However, <pre> [16:00] <al ... iscourage you to touch there directly </pre>
- Hi, I'm building some integration with Redm ... low anonymous and non member users to create issues and add notes. I want to do that through ... oes anyone has any knowledge on this? Thanks.
- Hello @all, I just installed Redmine with th ... nstalled the Visual Studio Plugin to get the Issues list but I get the following answer: Use ... 32 offset) bei Redmine.RedmineService.GetIssues(String query) bei RedmineTaskListPackage.IssueLoader.GetIssues(ConnectionSettings settings) I even don't see an issue-list when I go to [Server-IP]/issues.xml like it is documented. I also do turn o ... erver 2012). What's going wrong? Any idea?
- Open discussion: RE: When using the file-protocol in an issue an Error 500 appears
- Hello everybody, I found the cause of the ... is information can help someone else. Bye.
- I had been using Redmine V2 and there was a l ... et that link back again? Thanks in advance
- Hi, We are looking for a solution where in case an Issue receives no response from the Assignee for x ... n to gave the last comment or who raised the issue.. Please advice how do we configure redmine for the above... Thanks in advance.
- Help: RE: How to rebuild Issue nested set tree
- Here's a fixed and improved version of the re ... - CREATE EXTENSION ltree; BEGIN; -- Lock issues for updates for the duration of the transaction. -- Comment this out, if you need to allow issue updates while the rebuild is running, -- but this could cause new or moved issues with wrong lft / rgt nodes. LOCK TABLE issues IN EXCLUSIVE MODE; -- build hierarchical ... ent/static/ltree.html CREATE TEMP TABLE tmp_issues ON COMMIT DROP AS WITH RECURSIVE t AS ( ... lpad(i.id::text, length((select max(id) from issues)::text), '0')) AS path, i.id, i.parent_id --, subject FROM issues AS i WHERE i.parent_id IS NULL UNION ... lpad(i.id::text, length((select max(id) from issues)::text), '0'), i.id, i.parent_id --, subject FROM t JOIN issues AS i ON t.id = i.parent_id ) SELECT row_n ... path WITH DATA; CREATE UNIQUE INDEX tmp_...