Search found 1622 matches

by cas
07 Feb 2024, 15:00
Forum: General Plugin Discussion
Topic: KPI plugin released
Replies: 2
Views: 2846

KPI plugin released

See heer: https://github.com/mantisbt-plugins/KPI How does it work? This plugin calculates the number of days between 2 statusses en evaluates that against a set number of days. Default it will calculate between Confirm date and Resolved date. Only issues with a date on Resolving are selected. Next ...
by cas
07 Feb 2024, 07:43
Forum: General Discussion
Topic: Response & Resolution time metrics
Replies: 3
Views: 4894

Re: Response & Resolution time metrics

I still have a plugin lying around which does something like requested. This plugin calculates the number of days between 2 statusses and evaluates that against a set number of days. Default it will calculate between Confirm date and Resolved date. Only issues with a date on Resolving are selected. ...
by cas
05 Feb 2024, 15:52
Forum: Help
Topic: csv-import questions
Replies: 2
Views: 2245

Re: csv-import questions

In principle not but to be sure, try it out in a test environment.
by cas
03 Feb 2024, 08:26
Forum: General Discussion
Topic: To automatically clone issues
Replies: 1
Views: 2064

Re: To automatically clone issues

Not out of the box, you would need to create a plugin based upon a trigger in during creation of a bug.
by cas
02 Feb 2024, 14:28
Forum: General Plugin Discussion
Topic: Creating Documentation on Existing Plugins - XMLImport - csv-import
Replies: 1
Views: 2457

Re: Creating Documentation on Existing Plugins - XMLImport - csv-import

I have not found complete documentation on the XMLImportExport plugin. So additions seem welcome to me.
by cas
29 Jan 2024, 20:37
Forum: Help
Topic: Importing attachments
Replies: 15
Views: 6332

Re: Importing attachments

I also requested a link to the docs to see how attachments can be handled. let's wait for that.
by cas
29 Jan 2024, 20:36
Forum: General Discussion
Topic: WARN - Version of MySQL being used is within the Premier Support period
Replies: 4
Views: 2664

Re: WARN - Version of MySQL being used is within the Premier Support period

You can ignore it for now but better update mysql version to a later version.
by cas
29 Jan 2024, 09:39
Forum: Help
Topic: Importing attachments
Replies: 15
Views: 6332

Re: Importing attachments

Is there also a description of how the plugin works (there is no accompanying document with the plaugin itself) and how to construct the XML such that they are ready for the import?
by cas
28 Jan 2024, 09:26
Forum: Help
Topic: Importing attachments
Replies: 15
Views: 6332

Re: Importing attachments

Some more documentation (or a link to that) would come in handy :mrgreen:
by cas
27 Jan 2024, 16:16
Forum: Help
Topic: Importing attachments
Replies: 15
Views: 6332

Re: Importing attachments

Yes that can be done but you need to use a script to get this done.
by cas
27 Jan 2024, 16:15
Forum: General Discussion
Topic: Migrating from TRAC to Mantis
Replies: 4
Views: 6802

Re: Migrating from TRAC to Mantis

Try to find someone who can write a script for you, myay cost some money but hey, it will bring you Mantisbt :mrgreen:
by cas
26 Jan 2024, 07:26
Forum: General Plugin Discussion
Topic: Statistics plugin released
Replies: 3
Views: 8750

Re: Statistics plugin released

Thanks for the correction, typo from my side.
Recently released version 1.1.0 which should be warning-proof under Mantis 2.26 and added some functionalities as online scaling of the graphs and the option for downloading the data set used for the graphs.
by cas
25 Jan 2024, 15:48
Forum: General Discussion
Topic: Adding monitoring for other users on bug creation
Replies: 3
Views: 2417

Re: Adding monitoring for other users on bug creation

for the first adjustment, the line is found near the end and reads:
include( dirname( __FILE__ ) . '/account_prefs_inc.php' );

The last adjustment should be done just before the line layout_page_header();
by cas
24 Jan 2024, 14:17
Forum: Help
Topic: Comments marked private being sent on ticket close - is this a plugin issue instead?
Replies: 6
Views: 19390

Re: Comments marked private being sent on ticket close - is this a plugin issue instead?

That was the issue. Someone with that level will see private notes :D
by cas
24 Jan 2024, 13:11
Forum: General Plugin Discussion
Topic: Problem with Plugin (EVENT & USER)
Replies: 2
Views: 2487

Re: Problem with Plugin (EVENT & USER)

Try this code:

Code: Select all

if( !auth_is_user_authenticated() ) {
	$user_color_theme = 'default';
   } else {
   	// logged in
	$user_id = auth_get_current_user_id();
    	$user_color_theme = plugin_config_get('color_theme', 'default', false, $user_id); // load color theme for specific user
    }