Search found 1622 matches

by cas
14 Mar 2024, 08:37
Forum: General Plugin Discussion
Topic: HTML Email notifications for Mantis 2.x
Replies: 10
Views: 1506

Re: HTML Email notifications for Mantis 2.x

Here you can find it all: https://github.com/mantisbt-plugins/mailtemplate
Also added a fully prepared emai_api.php for version 2.26
by cas
13 Mar 2024, 08:06
Forum: General Plugin Discussion
Topic: HTML Email notifications for Mantis 2.x
Replies: 10
Views: 1506

Re: HTML Email notifications for Mantis 2.x

I did create an option to define your own templates for emails (2023) but that does require some adjustments in core files.
Have a look here https://mantisbt.org/forums/viewtopic.php?p=74209
by cas
12 Mar 2024, 15:24
Forum: General Discussion
Topic: automation of filling in dates in custom fields
Replies: 1
Views: 811

Re: automation of filling in dates in custom fields

Have a look at the Linked_custom_fileds plugin (you can find that @ github)
by cas
12 Mar 2024, 07:23
Forum: General Discussion
Topic: LDAP Access
Replies: 17
Views: 69451

Re: LDAP Access

I have a small plugin which enables automated access based upon ad credentials for those that run mantis on IIS.
I have made this available on Github: https://github.com/mantisbt-plugins/adLogin
by cas
08 Mar 2024, 07:13
Forum: General Discussion
Topic: transfer a project to another server- 2.26.0 to 2.25.2
Replies: 2
Views: 532

Re: transfer a project to another server- 2.26.0 to 2.25.2

First of all, I would ensure that your approval and production system run on the same software to avoid any funny effects. Clearly you can have a test system on a higher level (Mantis/PHP/MySql/etcetera) to see if your environment can be upgraded. As for your request, there is a Clone project plugin...
by cas
05 Mar 2024, 15:02
Forum: General Plugin Discussion
Topic: MantisKanban plugin not working
Replies: 4
Views: 3675

Re: MantisKanban plugin not working

This is relative easy. That plugin will not run on Mantis 2.x. Having looked @ the code, it seems pretty easy to make it work on later versions of Mantis.
by cas
05 Mar 2024, 14:56
Forum: General Plugin Discussion
Topic: KPI plugin released
Replies: 2
Views: 2846

Re: KPI plugin released

The wrong spelling has been adjusted in the latest release.
On tiome means that the period between reaching the statusses defined is lower or equal than the the set threshold.
by cas
05 Mar 2024, 14:52
Forum: Help
Topic: SMS notifications
Replies: 1
Views: 2216

Re: SMS notifications

you should write a plugin for that or upgrade this one:
https://www.mantisbt.org/forums/viewtopic.php?p=65944
by cas
05 Mar 2024, 14:46
Forum: Customizations
Topic: I need a filter where i can bring the bugs from a specific project and a specific user
Replies: 8
Views: 2735

Re: I need a filter where i can bring the bugs from a specific project and a specific user

did you check the advanced filter options? Click in the top right corner (of the view all bugs age) next to the chevron...
by cas
05 Mar 2024, 14:43
Forum: Customizations
Topic: How to add custom group actions?
Replies: 1
Views: 2174

Re: How to add custom group actions?

How does the code look that you were planning to implement?
by cas
05 Mar 2024, 14:38
Forum: General Discussion
Topic: Using MantisBT for physical products / electronics ?
Replies: 2
Views: 2669

Re: Using MantisBT for physical products / electronics ?

Mantis can be used in a lot of scenarios. What exactly are the requirements?
by cas
05 Mar 2024, 14:37
Forum: General Discussion
Topic: Move database location
Replies: 1
Views: 2683

Re: Move database location

That is a MySql/MariaDB issue, check on their forums.
by cas
12 Feb 2024, 09:03
Forum: General Discussion
Topic: Retrieve data from Mantis
Replies: 1
Views: 1963

Re: Retrieve data from Mantis

Like I mentioned in the post you are referring to, there is the query plugin(version 2.12) which can run fully automatic to export data. The output can be stored on your network and another job could import this data into the other DB application. I have done something similar where I scheduled the ...
by cas
09 Feb 2024, 13:35
Forum: Customizations
Topic: To fill a custom field with users from AD (Active Directory)
Replies: 2
Views: 3926

Re: To fill a custom field with users from AD (Active Directory)

What you should do, is update the value field in the database with the enumeration. So update field "possible_values" in the "mantis_custom_field_table" with results of your query out of AD. Just make sure that entries are separated by a "|". There is a little caveat he...