Search found 1467 matches

by cas
15 Sep 2023, 07:48
Forum: Help
Topic: automatic priority increase for over due date issue
Replies: 14
Views: 1401

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?
by cas
13 Sep 2023, 14:57
Forum: Help
Topic: automatic priority increase for over due date issue
Replies: 14
Views: 1401

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...
by cas
12 Sep 2023, 11:04
Forum: General Discussion
Topic: Case insensitivity
Replies: 4
Views: 181905

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 ...
by cas
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: 675

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
by cas
11 Sep 2023, 11:37
Forum: Help
Topic: automatic priority increase for over due date issue
Replies: 14
Views: 1401

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?
by cas
11 Sep 2023, 09:33
Forum: Help
Topic: automatic priority increase for over due date issue
Replies: 14
Views: 1401

Re: automatic priority increase for over due date issue

Yes you can using a plugin that takes care of this required behaviour
by cas
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: 675

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 :mrgreen:
by cas
05 Sep 2023, 07:53
Forum: Customizations
Topic: compress attachments
Replies: 1
Views: 1782

Re: compress attachments

Now available as plugin to be downloaded here:
https://github.com/mantisbt-plugins/ZipFiles
by cas
02 Sep 2023, 14:34
Forum: Customizations
Topic: compress attachments
Replies: 1
Views: 1782

compress attachments

In case you would like to compress your attachments, there is a relative easy way to achieve this. The positive side is that attachments take less storage on Disk or in Database and they are consuming less bandwidth on internet connections. Downside is that the files that have been compressed, can o...
by cas
30 Aug 2023, 11:54
Forum: Help
Topic: Getting Internal Application Error
Replies: 2
Views: 975

Re: Getting Internal Application Error

Think this version is using PHP8.2 which is not yet supported. Use a Xmapp version with PHP max 8.0
by cas
28 Aug 2023, 07:49
Forum: Help
Topic: Admin account is locked out until first login
Replies: 4
Views: 1225

Re: Admin account is locked out until first login

A very clean install is the best in this case since you have not been using it at all.
So yes, I would remove DB and catalog and start all over.
by cas
27 Aug 2023, 07:28
Forum: Help
Topic: Is it possible to switch off almost all fields for a project-specific issue
Replies: 2
Views: 5111

Re: Is it possible to switch off almost all fields for a project-specific issue

You can limit the number fields to be displayed.
Look at the following settings:
$g_bug_report_page_fields
$g_bug_view_page_fields
$g_bug_update_page_fields
With some smart logic, you can set these to specific values within core/config_inc.php
by cas
27 Aug 2023, 07:23
Forum: Help
Topic: Admin account is locked out until first login
Replies: 4
Views: 1225

Re: Admin account is locked out until first login

If it still does not work, I would at least start the installation again. Normally this should work fine.
Which PHP / OS are you using?