Project

General

Profile

Search

Results (31866)

Help: RE: Workflow modifications ignored
[[https://www.redmine.org/issues/18830]] years ago i moved from mysql to ms ... t change something in the workflows sections) 2023-03-14 18:52
Feature #38353 (New): Custom templates for email notifications
Currently email notifications is hardcoded in ... e # tracker - tracker name # id - issue id # status - issue status # subj - issue title # from - user made changes # to - assigned to mail_subject_issue_new: 'ISSUE NEW: by "%{from}" for "%{to}" %{status} in "%{project}": %{subj}' mail_subject_issue_update: 'ISSUE UPDATE: by "%{from}" for "%{to}" %{status} i ... ike this: <pre> s = l( "mail_subject_issue_new", project: issue.project.name, tracker: issue.tracker.name, id: issue.id, status: issue.status.name, subj: ... 2023-03-14 16:56
Help: RE: Remove old issues from X project
why not selecting them via filter in Redmine itself and then delete? 2023-03-14 11:58
Help: Workflow modifications ignored
in the admin panel > Workflow I want to change the worflow for custom role, tracker and issue statuses. When I change an setting, no chan ... itten to database but couldn't be loaded. 2023-03-14 09:46
Help: read only permission for priority ignored
I use redmine 4.2.10.stable I want developer ... ponding role can still change priority. (see issue edit screenshot) The user has no admin priv ... d screenshot please What am I doing wrong? 2023-03-14 03:34
Help: RE: Import projects from Excel
Hi @OT did you had any success, I'm on the part of importing the issues on different projects, since projects can't ... of time for environments with many projects. 2023-03-13 12:57
Help: RE: Issues are all being imported as "New", even when statuses are provided
Hi @qawsed the issue in my case was because the status I was tryi ... dmine.org/projects/redmine/wiki/HowTo_import_issues to clarify the issue for others. 2023-03-13 12:48
Open discussion: RE: Import issues from a CSV file
For anyone looking for this, there's an offic ... dmine.org/projects/redmine/wiki/HowTo_import_issues 2023-03-13 12:15
Help: RE: Can't edit or quote issues because of "Unknown Format"
Oh my, where can I hide my face... Your ti ... ) Thank you very, very much for your help! 2023-03-11 13:27
Help: RE: Can't edit or quote issues because of "Unknown Format"
According to ChatGPT, the format of the reque ... onfirm that you are requesting HTML format. 2023-03-11 12:52
Help: RE: Can't edit or quote issues because of "Unknown Format"
Hi, I'm not a redmine core dev but I've been ... do |format| format.html {redirect_to issue_path(@journal.journalized)} format.js ... "edit as HTML" instead of "edit as JS". 2023-03-11 12:35
Help: Can't edit or quote issues because of "Unknown Format"
Hi, maybe someone here can help me, I'm to ... I try to edit (or even quote) an entry on an issue. So, the issue would be a bug, I've opened it with an initi ... ally at sea here, after 30+ years in IT :-) 2023-03-11 07:57
Help: Who can explain the issue property Category?
Dear Redmine community, I have searched this ... anation of the property ??Category?? of an ??Issue?? and the distinction to the property ??Trac ... tegory?? property. Appreciated! Cheers! 2023-03-10 12:13
Help: Configure https
We have Redmine installed on a Windows 2019 s ... seems to go to port 80. This is causing some issues as we want this accessible from outside. 2023-03-09 17:55
Feature #38343 (Closed): Change the default n ... "Only for things I watch or I am assigned to"
Currently, the default notification option of ... that a user will receive notifications about issues of which the user is an author, assignee, o ... n, the user will receive notifications about issues of which the user is an assignee or watcher ... ved in" (internal name is @only_my_events@): issues of which the user is an *author*, assignee, ... gned to" (internal name is @only_assigned@): issues of which the user is an assignee, or watcher In Redmine 5.1, we will have "Auto watch issues on issue creation" feature (#38238). Since the new fe ... edmine 5.1 automatically become a watcher of issues they create. Becoming an issue watcher automatically means that the user will always receive notifications for issues they create even if the user's notification ... easons: * Users can stop notifications of issue... 2023-03-09 10:13
Defect #38342 (New): URLs in outgoing emails get mutilated
Environment: Redmine version 5.0.2.stable R ... e currently can't communicate important code issues or URLs with customers via the issues, but instead have to resort to write an ext ... ne, that might be causing this? Thank you. 2023-03-09 09:37
Open discussion: RE: I have probllem in dowloading redmine. Redmine issued certificate expired
It is not Redmine's server certificate which ... certificates. If you are still experiencing issues, you should update your TLS library such as OpenSSL to a more modern (and less insecure) version. 2023-03-07 20:24
Defect #38340 (Closed): Bundle install error ... ine 5.0.4 to 5.0.5 on ruby 2.5.1 environment
Trying upgrade with this environment <pre> ... depends on minitest </pre> 2023-03-07 19:43
Help: RE: Where are status change details for an issue stored in the DB?
I've found it. It's all stored in journals and journal_details. 2023-03-07 17:39
Help: Where are status change details for an issue stored in the DB?
Hi all I want to get the status change info for an issue from the DB. Which table is it stored in? Or ... l allow me to find out the timestamp when an issue changed status. I'm basically trying to pull together an SLA report so I can show how long an issue took to progress from New -> In Progress -> ... Redmine plugins: no plugin installed 2023-03-07 15:30
Defect #38337 (Closed): Export Time as CSV : FrozenError (can't modify frozen String: "")
Hello, When i try to export time table to ... ent_on&c%5B%5D=user&c%5B%5D=activity&c%5B%5D=issue&c%5B%5D=comments&c%5B%5D=hours&t%5B%5D=hours ... "*"}, "c"=>["spent_on", "user", "activity", "issue", "comments", "hours", ""], "t"=>["hours"], ... enger 1.0.7 </pre> Thank you 2023-03-07 11:50
Open discussion: RE: I have probllem in dowloading redmine. Redmine issued certificate expired
This is still happening. Will it ever be fixed? 2023-03-06 09:54
Patch #38332 (Closed): Traditional Chinese translation (to 22120)
* added ** label_auto_watch_on_issue_created 2023-03-06 03:44
Help: RE: Automatically delete closed issues older than 365 days
in my case which im deleting the old issues older than 6 months I have created a file as delete_old_issues.rake and added the below script <pre> namespace :redmine do desc "Deletes old issues in batches of 10k" task delete_old_issues: :environment do Issue.where("created_on < '#{6.months.ago}' AND project_id = 574").find_each(batch_size: 10000) do |issue| issue.destroy end end end </pre> And ... y-2.4.6; bundle exec rake redmine:delete_old_issues RAILS_ENV=production </pre> you can edit the script as per the requirement 2023-03-05 19:57
Help: Redmine IMAP issue email move to 'failed' folder
I am trying to configure IMAP for Redmine so that it reads email from my address and creates an issue directly. All the emails get marked as read ... /pre> This I believe is the output of the issue creation process in production.log: <pre> ... b491d1bc535d] Started GET "/projects/helping/issues" for IP-ADDR at TIME I, [2023-03-03T17:23: ... 0-b8c1-47c4-a5a8-b491d1bc535d] Processing by IssuesController#index as HTML I, [2023-03-03T17: ... 34c0-b8c1-47c4-a5a8-b491d1bc535d] Rendered issues/index.html.erb within layouts/base (Duratio ... t production Database adapter Mysql2 </pre> 2023-03-03 17:35
(1826-1850/31866)