Search found 1586 matches

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: 2548

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: 5627

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: 5627

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: 5627

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: 5670

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: 7561

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: 2367

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: 6890

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: 2437

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
    }
by cas
19 Jan 2024, 07:34
Forum: Help
Topic: Better solution than MantisBT
Replies: 13
Views: 7569

Re: Better solution than MantisBT

Perhaps there is a plugin to allow for voting on a topic? That would then give everyone a chance to prioritize things for the devs to focus on, similar to how Plex does it on their forum. And they have a TON of users globally, so something like that was needed. For Mantis there is such a plugin, no...
by cas
17 Jan 2024, 17:36
Forum: Help
Topic: Rename "Steps To Reproduce"
Replies: 3
Views: 2184

Re: Rename "Steps To Reproduce"

yep, best copy the 3 lines from lang/strings_english.txt and adjust to your liking in config/custom_strings_inc.php :mrgreen:
by cas
17 Jan 2024, 14:31
Forum: Help
Topic: Rename "Steps To Reproduce"
Replies: 3
Views: 2184

Re: Rename "Steps To Reproduce"

Hi karl, do not touch the database. You can change this using a file called custom_strings_inc.php within the config directory. If the file does not exist. you need to create it with the following content: <?PHP $s_steps_to_reproduce_updated = 'Route Cause Analysis Updated'; $s_steps_to_reproduce = ...
by cas
15 Jan 2024, 17:18
Forum: General Plugin Discussion
Topic: Statistics plugin released
Replies: 3
Views: 7561

Statistics plugin released

# Statistics Version 1.0.0 Available for mantis 2.x The Statistics plugin presents statistical overviews in graphics and/or table lay-out of your Mantis installation. This plugin is based upon MantisStats|Lite as created by Avetis Avagyan (www.MantisStats.org). I have tried to get in touch with him ...
by cas
12 Jan 2024, 08:09
Forum: General Plugin Discussion
Topic: Clone Project plugin
Replies: 5
Views: 73800

Re: Clone Project plugin

Copy Hierarchy means (at least that is the intention) that if the project you clone is a sub-project, the cloned project should be created also as a sub-project. In all other cases it will be created as a top-level project.. As for copying sub-projects, this is possible within Mantisbt. A project ca...