Project

General

Profile

Search

Results (18291)

Plugins: RE: Sidebar Issue Control
Hi, I forked it with the "avatar bug" fix here : https://github.com/asenar/redmine_issue_control_panel/ and added french translations ... ed here : https://github.com/nistude/redmine_issue_control_panel (nothing since 2 years) Fee ... solutely not ruby skilled, feel free to do it 2013-04-16 17:37
Open discussion: RE: receiving emails from imap ssl
The easy way is if you have webmail check the ... ss bar. But you may be having a different issue altogether. Can you successfully receive email via IMAP SSL? Is the issue only with sending mail? See the second ... n sending should work based on the fix above. 2013-04-16 15:00
Help: demo Redmine 500 error creating Issue Priorities
I've got a test installation at see3.m.redmin ... ects. However, when I try to create a new issue it tells me that Priority cannot be blank. F ... orities from Administration > Enumerations > Issue Priorities, but cannot due to Internal serve ... d at the moment. Thanks for sorting this out. 2013-04-16 12:03
Development: RE: getting blank response for trying to update an issue
If you get 200 then the issue should have been updated? 2013-04-16 11:56
Plugins: RE: Time & Expense 1.5
Roelof. A) when you change the project in the drop down does it try to load the Issue drop down? Check the issue visibility under roles and permissions See if you are assigned any issues from that project or have the visibility To see all the issues. B) check if you checked the 'use approval system' Dhanasingh 2013-04-16 02:46
Plugins: RE: Time & Expense 1.5
I did a fresh redmine install (2.3) with time ... be awesome. Hopefully these are just simple issues resulting from me being a newbie with time and expense a) the issues associated with each project do not show up in the drop down list (so I have a blank list of issues - actually not even a list, only a blank en ... e/guidance would be appreciated Thanks 2013-04-15 22:34
Help: RE: Need help creating an issue using REST api (PHP)
I have figured out a solution that worked for ... $data['issue'] = array("project_id" => 5, "subject" => "t ... t('https://host/redmine/projects/projectname/issues?key=keyid'); curl_setopt($ch, CURLOPT_CUST ... posting to https which has some certificate issues, I needed to set the following to false to ignore the issue curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, fa ... o return the date time stamp you created the issue. 2013-04-15 18:32
Help: Java api 1.18 user bean
I have problem with User: <pre> User user=issue.getAssignee(); String name=user.getFirstNam ... ng? I need get email addresses for notify. 2013-04-15 17:54
Help: Need help creating an issue using REST api
Hello all, I am a REST newbie and need so ... hree options. Two of the options require an issue to be created in redmine. This web form is ... separate from redmine) and should post a new issue to redmine under a specific project. The directions say: POST /issues.xml <?xml version="1.0"?> <issue> <project_id>1</project_id> <subject>Example</subject> <priority_id>4</priority_id> </issue> This provides very little help to me. F ... ata to the Redmine REST api? Thanks! Will 2013-04-15 17:02
Open discussion: RE: no history update when Bulk edit issues
now it is working, i don´t know. Was only my human mistake. 2013-04-15 16:20
Help: RE: Redmine 2.0: 404 errors after creating plugin to add top menu links
I also ran into this issue and for me it turned out to be a routes issue. Redmine 2.X no longer has default routes ... ure if it is needed, but I suspect it is not. 2013-04-15 15:48
Help: RE: Access denied for user 'redmine'@'REDMINE_SRV' (using password: YES)
Muhammad Ali, see also this guide, http://www ... mation 1.0.2 redmine_issue_checklist 2.0.5 redmine_ ... ger 0.1.0 redmine_user_issues 0.0.2 redmine_wiki_ ... there is no barriers to stay to 1.0.1, go up. 2013-04-15 10:40
Open discussion: RE: no history update when Bulk edit issues
A Old Version 1.3... But I don´t found that it is fixed in the changelog. 2013-04-15 09:21
Open discussion: Encoding Problem
Hello! I have problems with unicode letters. E.g, when I create new issue or editing project name and I put russian ch ... s problem but they can't help me. Thank you 2013-04-14 17:23
Help: RE: newly installed redmine1.1.3 stable,query with filter,no item was showed
minghua chen wrote: > my server os is Ubuntu ... sion:0.8) date,then set the filter,and query issues,shows no item, then I click the query again ... ask' (available in RDoc 2.4.2+) instead.- 2013-04-14 16:01
Help: Access denied for user 'redmine'@'REDMINE_SRV' (using password: YES)
Hi, i am facing problem with installing R ... i have on the forms that its a password issue but in my case i think it some thing else... ... ested_set' C:/webserver/Redmine/app/models/issue.rb:35 C:/webserver/Ruby/lib/ruby/site_ruby ... n/rake:19 Please help me to solve it issue. Thanks Muhammad 2013-04-14 12:52
Plugins: Redmine V2.3 - Generate answer for issue with own template
Dear, I am looking to find an existing plu ... e and when we would like to create/answer an issue,articles,news,...we can select the correct t ... will be considered. Best Regards, Youssef 2013-04-13 13:54
Plugins: Redmine V2.3 - Generate PDF Report with own layout
Dear, I am looking to find an existing plu ... emplate and when we would like to export the issue,articles,news,...as pdf, we can select the c ... l be considered. Best Regards, Youssef 2013-04-13 13:51
Plugins: RE: patching application helper in redmine 2.3
Related issue #13753. 2013-04-13 09:56
Open discussion: RE: check number of tasks of my developers
You may create custom queries where you can filter issues by assignee. 2013-04-13 05:53
Help: RE: Not able to upload any file
It was a permission issue. I executed the following on the entire red ... www-data:www-data redmine and it solved the issue. Thanks! 2013-04-12 19:13
Help: newly installed redmine1.1.3 stable,query with filter,no item was showed
my server os is Ubuntu 11.10,mysql version 5. ... sion:0.8) date,then set the filter,and query issues,shows no item, then I click the query again ... you all.Wish you can understand my english. 2013-04-12 17:49
Help: Redmine Java API: getIssueById returns corrupt JSON?
Hi, I am trying to push tickets from a Lotus Notes Database into Redmine as issues. Therefore I wrote a Java Agent using redmine-java-api-1.19.jar. Creating new issues based on my Notes documents works fine. If I try to update an existing issue in Redmine, however, the RedmineManager throws a RedmineFormatException. My code: <pre> Issue issueToUpdate = mgr.getIssueById(someIntegerValue); issueToUpdate.setSubject("something"); // set all the other fields needed mgr.update(issueToUpdate); </pre> But the exception already occurs at the first line (the given issue ID is correct and it definitely is an Intege ... uble-triple-etc-checked that. I can open the issue in the browser without any problems): <pr ... com.taskadapter.redmineapi.RedmineManager.getIssue... 2013-04-12 11:04
Help: Creating Project Membership through Redmine API
I get "Empty Reply" response from using the A ... no problems using the API to add Projects or Issues, but I seem to be having problems with thes ... _headers] => HTTP/1.1 403 Forbidden </pre> 2013-04-11 22:14
Open discussion: RE: no history update when Bulk edit issues
Which version of redmine are you using? 2013-04-11 21:48
(7676-7700/18291)