Search found 65 matches

by acoder2020
24 Apr 2024, 17:47
Forum: Help
Topic: Changing values of custom fields
Replies: 1
Views: 140

Re: Changing values of custom fields

I can answer this myself. Mantis does not bother to update field values in the background. You'll need to find the id of the field in `mantis_custom_field_table` Then update your actual value strings with this. Note that the id from above is stored as field_id in the string table: UPDATE `mantis_cus...
by acoder2020
24 Apr 2024, 17:29
Forum: Help
Topic: Changing values of custom fields
Replies: 1
Views: 140

Changing values of custom fields

Does MantisBT observe data integrity when we change values of custom fields?

For example, I have a custom field called "Affects Marketing" with possible values `1|0` (1 or 0)

If I change that in the Manage -> Custom Fields to possible values 'Yes|No', will this wreck data integrity?
by acoder2020
16 Apr 2024, 12:43
Forum: General Discussion
Topic: Recall date - set a date, have system send email reminder on that date
Replies: 3
Views: 154

Re: Recall date - set a date, have system send email reminder on that date

That's a different functionality and would require console access to set up

How tricky would it be to build in a custom date to send a reminder on (for each individual ticket not as a whole)
by acoder2020
16 Apr 2024, 12:41
Forum: Help
Topic: Invalid value for 'relationship_type'
Replies: 1
Views: 90

Invalid value for 'relationship_type'

Invalid value for 'relationship_type' I changed Workflow Thresholds to allow Updaters to be asssigned an issue. When I try to assign an issue to an Updater, I get this error: APPLICATION ERROR #29 Invalid value for 'relationship_type' Please use the "Back" button in your web browser to ret...
by acoder2020
15 Apr 2024, 18:37
Forum: General Discussion
Topic: Recall date - set a date, have system send email reminder on that date
Replies: 3
Views: 154

Recall date - set a date, have system send email reminder on that date

Are there any plugins that let us set a date on a ticket and be reminded via email on that date? There is an existing Remind Me plugin, but it requires manual use and is more like a *poke* feature imo. If we forget to remind them, well.. haha. Maybe I'm searching for the wrong name, but is there som...
by acoder2020
11 Apr 2024, 23:02
Forum: General Discussion
Topic: HTML Email - adding data to note_mailtemplate.html
Replies: 3
Views: 113

Re: HTML Email - adding data to note_mailtemplate.html

What I'm aiming to add at the top of the existing table:
Screenshot from 2024-04-11 19-01-03.png
Screenshot from 2024-04-11 19-01-03.png (61.18 KiB) Viewed 110 times
Happy to try a pull request once I have a handle on what I need to do. I'm not super well versed with GIT but will do my best to learn.
by acoder2020
11 Apr 2024, 22:57
Forum: General Discussion
Topic: HTML Email - adding data to note_mailtemplate.html
Replies: 3
Views: 113

HTML Email - adding data to note_mailtemplate.html

I'd like to add some of the main Issue data to note email notifications. It looks like the array $p_visible_bug_data is passed for bug email notifications like: $t_message = email_template_bug_message( $p_visible_bug_data, $t_message ); The same array is not passed when sending note notifications: $...
by acoder2020
11 Apr 2024, 19:52
Forum: Help
Topic: Email notifications not being sent
Replies: 3
Views: 144

Re: Email notifications not being sent

resolved, thanks.
by acoder2020
11 Apr 2024, 19:39
Forum: Help
Topic: Email notifications not being sent
Replies: 3
Views: 144

Re: Email notifications not being sent

and there it is: $g_email_receive_own This defines whether users should receive emails for their own actions. This option is defaulted to OFF, hence, users do not receive email notification for their own actions. This can be a source for confusions for users upgrading from MantisBT 0.17.x versions, ...
by acoder2020
11 Apr 2024, 19:36
Forum: Help
Topic: Email notifications not being sent
Replies: 3
Views: 144

Re: Email notifications not being sent

I'm curious what this means 2024-04-11 15:09 EDT RECIPIENT email_api.php:446 email_collect_recipients() Issue = #1935, drop @U19 (own action) Did a little exploring and found this: if( ( auth_get_current_user_id() == $t_id ) && ( OFF == config_get( 'email_receive_own' ) ) ) { log_event( LOG_...
by acoder2020
11 Apr 2024, 19:28
Forum: Help
Topic: Email notifications not being sent
Replies: 3
Views: 144

Email notifications not being sent

Emails appear to have stopped and I'm unsure why. When they were working a few days ago, it was set up the same - to use the built in mail function in linux. I am able to send mail from this same server from command prompt with the mail command. I installed a fresh copy of 2.26.1 (without setting up...
by acoder2020
11 Apr 2024, 15:17
Forum: General Discussion
Topic: Using emojis in issue
Replies: 4
Views: 4438

Re: Using emojis in issue

Can MantisBT use utf8mb4 now? Using modern emojis in comments would be super nice.
by acoder2020
22 Mar 2024, 20:07
Forum: Help
Topic: REST Api - Unable to add a note
Replies: 5
Views: 837

Re: REST Api - Unable to add a note

Update, I trimmed down the comment submission to a very simple example. This triggers an exception error in MantisBT itself.

Submitted bug at https://www.mantisbt.org/bugs/view.php?id=34348
by acoder2020
22 Mar 2024, 18:52
Forum: Help
Topic: REST Api - Unable to add a note
Replies: 5
Views: 837

Re: REST Api - Unable to add a note

Anyone? Should I submit this as a bug?
by acoder2020
21 Mar 2024, 21:29
Forum: Help
Topic: REST Api - Unable to add a note
Replies: 5
Views: 837

Re: REST Api - Unable to add a note

The PHP code driving all this. There is something in all of the variables passed. I can copy that debug output if needed. $url_issue_notes = "https://example.com/api/rest/issues/$mantis_issue_id/notes"; $q2 = " SELECT time, author, newvalue FROM ticket_change WHERE ticket=:trac_ticket...