Search
Results (18279)
- Hi there, We've been using redmine for a long time to track our IT issues and are very happy with it. Now we've been ... ? Any help would be appreciated. Mirko
- Open discussion: RE: Redmine becomes very slow when adding or updating issues
- I have this problem I fix it by disabling the notification (new issue/updating existing issues) e-mail and subscribed e-mail. Or edit property timeout's email config
- Plugins: RE: Organizing a Git Repository for redmine plugin
- I've created a patch requests for the needed hooks http://www.redmine.org/issues/19188. In the mean time I'll stick with the hack approach.
- Help: RE: A role that can see only the issues he created
- At the top of a role under the Name are two f ... to the user" Should be what you're after.
- Hello, I'm using the imap-task to receive emails and create issues on a specific project: <pre> rake -f /var ... e. Setting @unknown_user=accept@ creates the issues under the anonymous-account and any informa ... dded to the description of the newly created issue? Thanks in advance!
- Hi all, I noticed that a lot of issues are created for testing purpose or are not ... to ask for confirmation before creating the issue with a warning: " This is Redmine's bug tr ... mine.org Otherwise please check that your issue follows the [[Submissions]] guidelines. Issues which do not follow these guidelines will b ... It seems like a adding a line of code in the issues view will do the job. I can try to do it. ... d you indicate me where their repository is ?
- I have tried to install, redmine on my Raspbe ... . But in all the installations I have had issues. I then tried to go with the installer for ... efer me to? Thank you a lot -SneakySquid
- Hi, I've just spent at least half a day to ... t in the documentation that this could be an issue, or that a certain version of passenger >= x ... n it successfully. Hope that helps, Guy
- Hi everyone, I'd like to create a role for users to open issues but not to see other open issues. They would see the issues they created but how can I restrict them to see the others. In the "Issue tracking" part of the role permissions, it has View Issues and Add issues. But when I give the "View Issues" permission, they can see the other issues too. If I disable "View Issues" then they cannot even see the issues created by themselves. Is there a way to do it? Thanks
- Help: RE: Get available statuses by tracker through API
- Thanks for response. But I do not need list of issues. I am trying to design issue creating form for my app, thats why I need l ... ies through the Workflow. When you create an issue the list of statuses depends on chosen track ... and actually I need list of workflow record.
- Help: RE: Get available statuses by tracker through API
- Hello, The issue_statuses and trackers are tools to describe your issue. They do not depend on each other. Therefor ... guess that what you really want is a list of issues filtered per statuses and trackers. Which is possible with the following request <pre> GET /issues.json?status_id=1&tracker_id=1 </pre> You can get the available issue_statuses through the API ('issue' in issue_statuses is singular): http://www.redmine.org/issue_statuses.json You can also get the availa ... tp://www.redmine.org/trackers.json Regards
- Help: RE: 3.0 upgrade issue with Administration / Settings
- Hello, Can you share the content of config ... le v3.0.0 was overwritten with your old file.
- Hi, I have configured two servers of Redmi ... e two installations. When I am saving new issue/updating existing issues the response from the server with port conf ... be done to improve the response? Regards,
- Hello, Currently Redmine sends out email notifications to relevant users when issues are added/updated, however this does not happen when a Git commit is linked to an issue. For some reason this is not seen as an "issue update" and no email is sent. Is there a ... ery push and parse the commit messages. When issue references are found, it would be nice to no ... sted parties of the actual work done on that issue. Q-BiC
- Help: RE: Administration / Users
- I have this error <pre> Processing by IssuesController#update as HTML Parameters: {"u ... Dzhr2Ua2zQaX2JGpmdEHrhd3oE0PW4rZzJ3uKLSQ=", "issue"=>{"is_private"=>"0", "project_id"=>"18", "t ... ity_id"=>"4", "assigned_to_id"=>"3", "parent_issue_id"=>"", "start_date"=>"2014-10-30", "due_da ... hers' app/models/mailer.rb:83:in `deliver_issue_edit' app/models/journal.rb:196:in `send_ ... models/journal.rb:54:in `save' app/models/issue.rb:1546:in `create_journal' app/models/issue.rb:165:in `create_or_update' app/controllers/issues_controller.rb:478:in `block in save_issue_with_child_records' app/controllers/issues_controller.rb:466:in `save_...
- I should start with - my upgrade to 2.6.2 wen ... reen (sorry, not in text). Please see attach.
- Open discussion: RE: Who's happy with current subtask/dates handling
- Hello, Would you like to test the patch which address this issue ? #5490-82 You can apply it with the command @git am some.patch@
- Open discussion: RE: Download all bugs as json
- Hello, You should check the wiki, it expla ... suggest to read the [[Rest_API]] and [[Rest_Issues]] pages. You can either get issues.json via your browser or a tool/script/prog ... .org, I guess you're looking for the list of issues filtered with the tracker 'defect'. The fi ... ":"Patch"}]} </pre> Then iterate over the issue offset to get all the issues: <pre> GET /issues.json?tracker_i=1&limit=100&offset=0 </pre> ... ,"limit":100 give you the current offset and issue total_count.
- Help: RE: Deleting ticket
- After digging deeper into the issue I saw, that redmine stores files in the file ... ith the same user and permissions? Andreas
- Hi, I use Redmine 2.6.2 and have one issue: I could delete some tickets but some not ... Any help is appreciated Thanks Andras
- Hello. First, I 'm sorry for my poor engli ... ITIL. So I need plugin for time tracking of issue status (Not spent time). 1. How long when issue status changed from "new" to "In progress"? 2. How long when issue status changed from "In progress" to "Resolved"? 3. How long when issue status changed from "Feedback" to "In progr ... n or appropriate method for me. Thank you.
- Plugins: RE: Time & Expense 1.0 not compatible with Redmine 2.6.1
- Juan Manuel, Time & Expense 1.0 is compatibl ... ble versions and let me know if you have any issues Dhanasingh
- Help: RE: curl command for uploading attachment to existing issue using API?
- Hello, Actually when I look at the documen ... 'll point you to the relevant pages: [[Rest_Issues#Updating-an-issue]] Here you get the HTTP command @PUT /issues/[id].[format]@ [[Rest_api#Attaching-files] ... et an example of a curl command to update an issue Also Redmine's tests are its best documentation: source:/trunk/test/integration/api_test/issues_test.rb And don't forget curl's man page. ... 8"}} </pre> Second step is to update the issue with the token: <pre> $ curl -X PUT -H "Content-Type: application/json" --data "@issue.json" -u [login]:[password] [redmine_url]/issues/[id].json </pre> Where issue.json file content is (replace token, filename and content_type): <pre> { "issue": { "notes": "Attachment added", " ... achments can be linked to only one container/...
- Hi ive looked through the help documentation ... doing to upload an attachment to an existing issue using the api, it only talks about creating a new issue with an attachment. does anybody know th ... for upload attachment using xml and the api?
- Hi everyone, I would like to download all ... download any jsons was through extending the issues page with .json, however it only shows a li ... See: http://www.redmine.org/projects/redmine/issues.json I either need a link with all bugs ... each pr link. Thanks for any help, Robin