Search found 1460 matches
- 19 minutes ago
- Forum: General Discussion
- Topic: Organizing custom fields in columns or groups
- Replies: 1
- Views: 88
Re: Organizing custom fields in columns or groups
Although I understand the request, I do not think this can be solved by a plugin, this would really require an overhaul on the way custom-fields are defined and presented. If this were to be changed then also one should have the ability to have different groups of custom-fields, the ability to prese...
- Yesterday, 06:57
- Forum: Help
- Topic: MySQL Error after Migration and Upgrade - Application Error #401 - MySQL Error 1062
- Replies: 2
- Views: 93
Re: MySQL Error after Migration and Upgrade - Application Error #401 - MySQL Error 1062
Is perhaps the auto-increment missing on the id-field?
If so, run this command within phpmyadmin:
If so, run this command within phpmyadmin:
Code: Select all
ALTER TABLE `mantis_tokens_table`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
- 20 Sep 2023, 09:35
- Forum: Customizations
- Topic: delete its text name in the status
- Replies: 4
- Views: 295
Re: delete its text name in the status
This is handled within core/columns_api.php. Check out the function function print_column_status. Here you can suppress printing of the text (and/or the user in charge). This would require to make this change every time after updating Mantis. It also expects everybody to exactly know what each color...
- 20 Sep 2023, 08:42
- Forum: Help
- Topic: automatic priority increase for over due date issue
- Replies: 14
- Views: 870
Re: automatic priority increase for over due date issue
That is added in attached version for you. Now yoy can learn to build your own plugins 

- 19 Sep 2023, 13:42
- Forum: Customizations
- Topic: delete its text name in the status
- Replies: 4
- Views: 295
Re: delete its text name in the status
You would need to adjust the code, not advised. What is wrong with the text? If you want, you can change it. Check out the documentation.
- 19 Sep 2023, 13:40
- Forum: Help
- Topic: delete all notes of one user in all tasks
- Replies: 1
- Views: 1940
Re: delete all notes of one user in all tasks
This is not available out of the box. Can be done directly on the database but you better make a backup first 

- 19 Sep 2023, 13:37
- Forum: Help
- Topic: automatic priority increase for over due date issue
- Replies: 14
- Views: 870
Re: automatic priority increase for over due date issue
install attached, basic, plugin and you will find an option called "Review priorities" within the management menu 

- 18 Sep 2023, 07:37
- Forum: Help
- Topic: automatic priority increase for over due date issue
- Replies: 14
- Views: 870
Re: automatic priority increase for over due date issue
For me there are 2 options, either you schedule a job or you make it a manual activity ( 1 action for all tickets). You indicated that a cron job would be problematic (which it is not) so automatic is not an option. Plugins require a trigger which is based on execution of the software not by schedul...
- 15 Sep 2023, 07:48
- Forum: Help
- Topic: automatic priority increase for over due date issue
- Replies: 14
- Views: 870
Re: automatic priority increase for over due date issue
What the plugin could offer at best is an additional option in the admin section to run the script, would that fit better?
So then the following questions need to be answered:
- Run it for all projects or only for current active project?
- For issues with which status?
So then the following questions need to be answered:
- Run it for all projects or only for current active project?
- For issues with which status?
- 13 Sep 2023, 14:57
- Forum: Help
- Topic: automatic priority increase for over due date issue
- Replies: 14
- Views: 870
Re: automatic priority increase for over due date issue
In your case it might be better to set up an automatic job (Cron under Linux, Task under Windows) which runs once a month which takes care of you manual monthly action. This would be a small script which increases priority if the Duedate is before current date for thickets with a specific status (le...
- 12 Sep 2023, 11:04
- Forum: General Discussion
- Topic: Case insensitivity
- Replies: 5
- Views: 172450
Re: Case insensitivity
This actually should be a setting in config_defaults_inc.php. As mentioned above there is a function available sql_ilike but this one is not used. So best would be to remove the function sql_ilike and only use sql_like where the last parameter would be a setting like $g_force_ci This way it becomes ...
- 11 Sep 2023, 15:06
- Forum: General Discussion
- Topic: Do we have the possibility to add custom filters in 'View issues' listing page.
- Replies: 3
- Views: 399
Re: Do we have the possibility to add custom filters in 'View issues' listing page.
That plugin is ok for your mantis but will not do what you want. That plugin allows for filtering on multiple bug-id's.
What you want, requires custom coding. What is available is the option to filter on the duedate, perhaps that is useful for you:
https://github.com/mantisbt-plugins/DD_Filter
What you want, requires custom coding. What is available is the option to filter on the duedate, perhaps that is useful for you:
https://github.com/mantisbt-plugins/DD_Filter
- 11 Sep 2023, 11:37
- Forum: Help
- Topic: automatic priority increase for over due date issue
- Replies: 14
- Views: 870
Re: automatic priority increase for over due date issue
I can help with that but wonder if you cannot use something else better. Priorities are limited and every day that will be increased if nothing happens.
Why not use the Reminder plugin to send an email to the person who needs to take action?
Why not use the Reminder plugin to send an email to the person who needs to take action?
- 11 Sep 2023, 09:33
- Forum: Help
- Topic: automatic priority increase for over due date issue
- Replies: 14
- Views: 870
Re: automatic priority increase for over due date issue
Yes you can using a plugin that takes care of this required behaviour
- 11 Sep 2023, 09:29
- Forum: General Discussion
- Topic: Do we have the possibility to add custom filters in 'View issues' listing page.
- Replies: 3
- Views: 399
Re: Do we have the possibility to add custom filters in 'View issues' listing page.
Yes you can via a plugin.
Via the plugin you add a custom field you would like to have, including the calculation if any.
Within the plugin you then can have a function to add it to the View issues filter section
Via the plugin you add a custom field you would like to have, including the calculation if any.
Within the plugin you then can have a function to add it to the View issues filter section
