Project

General

Profile

Search

Results (18205)

Open discussion: Adding spent time to a ticket doesn't modify the "last updated" on ticket
Hi, We're using redmine for time tracking ... time using the REST api. I'm looking for issues updated after my start date and in the next ... there an plugin to do this? Thanks Klaus 2024-05-02 10:32
Open discussion: RE: Ticket creation and modification in redmine ticket via Gmail
Ankit Verma wrote in message#69668: > Hi Jac ... ou for your help. > > I've encountered an issue with my local Redmine setup using Podman. Af ... attempting to implement this for 20 days. 2024-05-01 07:34
Open discussion: RE: Ticket creation and modification in redmine ticket via Gmail
Hi Jack, Thank you for your help. I've encountered an issue with my local Redmine setup using Podman. Af ... een attempting to implement this for 20 days. 2024-05-01 07:33
Open discussion: RE: Help Needed: Issues Installing Plugins, Including easy_gantt
Well, first thing, you shouldn't be using `su ... d before ? David - https://redminepro.com/ 2024-04-30 20:17
Help: RE: Issue with Redmine 5.1.1 or redmine-x CK Editor?
Jerome G. wrote in message#69665: > I also t ... e keep us updated when you start facing some issues. Chris 2024-04-30 14:10
Help: RE: Issue with Redmine 5.1.1 or redmine-x CK Editor?
I also tried https://www.redmine-x.com/redmin ... pplied, it works great on a dockerized 5.1.1 2024-04-30 12:32
Open discussion: Help Needed: Issues Installing Plugins, Including easy_gantt
Hello Redmine Community, I'm encountering issues when trying to install certain plugins on R ... ems to be more general as I run into similar issues with other plugins as well. Here is the err ... a missing or misconfigured dependency or an issue related to the patching process specific to RedmineExtensions. 2024-04-30 11:41
Open discussion: RE: Ticket creation and modification in redmine ticket via Gmail
Hi Ankit! Have you checked your Redmine email configuration? It seems there might be an issue there. Make sure to double-check the setting ... ems, feel free to ask for further assistance! 2024-04-29 23:11
Open discussion: Redmine - author_id Params Not Working When Creating New Issue Through REST API
I have migrated the Redmine version from 3.4.6 to 5.0.5 and I used to create a Redmine issue via the rest API, After migration author_id ... orking I used the below code to create an issue Before migration: It created an issue with dynamic author_id After migration: It created an issue with the user's ID that authenticates with t ... pre> <?php // Redmine API endpoint for issues $redmineUrl = 'https://live-url/issues.json'; $apiKey = 'XXXXXXXXXXXX'; // Issue data $issueData = array( 'issue' => array( 'project_id' => 'xyz', 'subject' => 'Issue subject', 'description' => 'Issue description', 'tracker_id' => 'bug', // Tracker ID for the type of ... 2024-04-29 14:00
Help: RE: Problem Installing Redmine 5.1.2
To fix the issue: cd /usr/share/gems/gems/ox-2.14.18/ext/ox && make && cp -a ox.so ../../lib/ 2024-04-25 04:26
Open discussion: RE: Using repositories with redmine
Hi Martin, maybe its important to clarify ... upload files. One can link existing files in issues and wiki pages but for the most part that's ... ts history, look at changes and link them to issues. But there's no possibility to modify the repository in Redmine directly. Greetings, Bernhard 2024-04-23 11:24
Open discussion: Problem using prebuilt redmine:5.1.2 containers
Hi everybody, I have been using prebuilt r ... iffent version for some time now without any issue. Now, with the upgrade from mysql 5.7 to 8. ... ? How can I fix this? Kind Regards Frank 2024-04-22 19:11
Development: RE: Creating issues does not work after upgrading Redmine to version 5.0.5
check plugins 2024-04-22 10:38
Help: RE: Tracker hierarchy (parent, subtask, ... played consistently, esp. when parent changes
as a note, i believe the indent in the issues list only happens when it is ordered in tha ... ere the children come right after the parent. 2024-04-22 10:32
Development: Redmine Ticket Body UI customization
I want to customize Redmine. Specifically, when I create an issue in my custom Redmine instance, I'd like to d ... of the particular project in the ticket body. 2024-04-22 09:47
Open discussion: RE: Issue creation by email
tien trung vu wrote: > Hello, > I followed ... ects/redmine/wiki/RedmineReceivingEmails for issue create, it's works but i want to ask : > How can it stop create issue when someone reply that email, it will create a duplicate issue on system ? > > Thanks Hi I am Ankit, ... ase guide me to create ticket using mail. 2024-04-22 07:25
Open discussion: RE: Issue creation by email
Bernhard Rohloff wrote in message#58455: > The right answer is, you can't. Redmine creates a new issue for every new email it receives. > What you ... please guide me to create ticket using mail. 2024-04-22 07:24
Help: Problem Installing Redmine 5.1.2
Hello, I've been running Redmine 5.0.3 on ... cret_token". Any advice on resolving this issue would be greatly appreciated! Thanks, Ma ... ee full trace by running task with --trace) 2024-04-20 07:18
Help: Tracker hierarchy (parent, subtask, nes ... played consistently, esp. when parent changes
We recently upgraded from 4.x and I liked the new '>' for subtasks in issue list and tracker view itself, BUT it seems t ... onsistently rendered with the '>' nesting in issue lists. Perhaps the same mechanism is involv ... !clipboard-202404191055-ehckx.png! Thanks! 2024-04-19 16:57
Open discussion: RE: Atom key(rss key) doesn't have api endpoint
Hi David, Thanks for the response. The ato ... est. *The RSS atom feed is available via /issues.atom?key=ID or /projects.atom?key=ID* - Here, I don't know the key then how to call the request 2024-04-19 10:31
Open discussion: RE: Atom key(rss key) doesn't have api endpoint
You will be able to generate the Atom key from /my/account The RSS atom feed is available via /issues.atom?key=ID or /projects.atom?key=ID David - https://redminepro.com/ 2024-04-19 09:32
Open discussion: RE: How to access last note of an issue
r vig wrote: > Hello, > I am using Redmine ... reSQL database. > I have now access to the issue of my project thanks to the table public.issue. > > I would like to have access to the last note of the issues but I can't find which table I have to use. ... I to Redmine. To access the last note of the issues, you should look into the ‘journals’ table. The notes for Redmine issues are stored there. You can retrieve the last note for each issue by filtering for entries where the ‘journalized_type’ column is ‘Issue’ and the ‘notes’ column is not null, then or ... * FROM journals WHERE journalized_type = 'Issue' AND notes IS NOT NULL ORDER BY created_on ... s query will give you the latest note for an issue. If you need the last note for each issue, you might need a more complex query that groups the results by ... 2024-04-19 08:52
Open discussion: RE: How to access last note of an issue
To access the last note of Redmine issues for a Power BI report, query the public.journals table joined with public.issues using issue_id. Filter journals by journalized_type as 'Issue' and aggregate using @MAX(created_on)@ and @MAX(notes)@ to get the latest note per issue. Adjust the SQL query to match your database schema and test before using in Power BI. 2024-04-18 11:16
Help: RE: Thousands separator for custom fields
It looks like it will be fixed in version 6: https://www.redmine.org/issues/22024#note-18 2024-04-18 01:29
Help: RE: thousands separator
It looks like it will be fixed in version 6: https://www.redmine.org/issues/22024#note-18 2024-04-18 01:28
(301-325/18205)