Search found 1516 matches

by cas
29 Oct 2023, 08:48
Forum: Help
Topic: Summary customization
Replies: 3
Views: 864

Re: Summary customization

I would start without any java, just include a simple php script that retrieves the data and displays it. Like always Keep it Simple. :mrgreen:
by cas
27 Oct 2023, 13:39
Forum: Help
Topic: Summary customization
Replies: 3
Views: 864

Re: Summary customization

Hi Sara,
you say you need to have custom field with ID = 59 but you are retrieving field with ID = 55.
In addition you are only saying it is not working but what is not working? Are there any java errors reported or is the new field not showing everything?
by cas
24 Oct 2023, 06:56
Forum: Help
Topic: Mantisbt does not send emails
Replies: 2
Views: 759

Re: Mantisbt does not send emails

Did you try the email check in the admin section?
by cas
23 Oct 2023, 11:16
Forum: General Discussion
Topic: Modifying email notifications with plugin adding attachments
Replies: 3
Views: 1431

Re: Modifying email notifications with plugin adding attachments

There is the forward plugin which you could modify to become active on the EVENT_REPORT_BUG. Next add the attachment to the mail. Perhaps that will work for you.
by cas
23 Oct 2023, 08:55
Forum: General Discussion
Topic: Modifying email notifications with plugin adding attachments
Replies: 3
Views: 1431

Re: Modifying email notifications with plugin adding attachments

The attachment filenames are stored in the the file_table including the type of file. So there you can find them. Out of the box theer is not much possible with the emails as such. I did create an option to define your own templates for emails but that does require some adjustments is core files. Th...
by cas
20 Oct 2023, 06:22
Forum: Help
Topic: How to delete multiple attachments at once?
Replies: 4
Views: 1121

Re: How to delete multiple attachments at once?

This is not available out of the box.
You can develop this feature and contribute. If that is not an option, you can report it @ www.mantisbt.org/bugs
by cas
18 Oct 2023, 06:59
Forum: Help
Topic: Administrator can't see notes and attachments
Replies: 3
Views: 6298

Re: Administrator can't see notes and attachments

You can check on a strange entry for this user in the tokens_table. You can simply remove those entries (using phpmyadmin or something similar) and have the user try again.
by cas
17 Oct 2023, 06:43
Forum: Help
Topic: Answer / quote notes
Replies: 6
Views: 1110

Re: Answer / quote notes

VL284, there is an easy way to reference to an issue/note within Mantis. Have a look @ https://mantisbt.org/forums/viewtopic.php?t=19315
The quoting button is something we can look at if this is also not enough :?
by cas
16 Oct 2023, 13:34
Forum: General Discussion
Topic: Get Manage Configuration via API or via Database
Replies: 3
Views: 1241

Re: Get Manage Configuration via API or via Database

In case you make changes to the default (workflow) settings, they will be stored/updated in the config table so that is where you need to be.
As for columns, each user can do that under their My Account section. For more generic access, one needs to have access to the Manage pages.
by cas
16 Oct 2023, 06:33
Forum: Help
Topic: Answer / quote notes
Replies: 6
Views: 1110

Re: Answer / quote notes

@vl284, how about creating a plugin that achieves that behavior?
by cas
14 Oct 2023, 08:45
Forum: Help
Topic: Answer / quote notes
Replies: 6
Views: 1110

Re: Answer / quote notes

I am not ware of such a plugin being available.
The easy way is to coy/paste whatever you like to quote :mrgreen:
by cas
11 Oct 2023, 12:16
Forum: General Discussion
Topic: Get Manage Configuration via API or via Database
Replies: 3
Views: 1241

Re: Get Manage Configuration via API or via Database

In general a lot of that is derived from the roles. Default settings you can find in config_defaults_inc.php
by cas
11 Oct 2023, 12:14
Forum: Customizations
Topic: Disable the "Edit" button of a ticket when it is assigned
Replies: 3
Views: 864

Re: Disable the "Edit" button of a ticket when it is assigned

Well you can look at assigning corresponding levels, that will be able to solve must of the possible changes, just user Reporter/Developer & Manager.
This however will limit the strength of the tool.
Any changes are looged so one knbows what has been changed when and by whom.
by cas
11 Oct 2023, 06:05
Forum: Help
Topic: Password security verification
Replies: 6
Views: 3102

Re: Password security verification

What you then can try is to extend the existing plugin with checking a table which holds the "weak" passwords.
by cas
09 Oct 2023, 14:58
Forum: Customizations
Topic: Disable the "Edit" button of a ticket when it is assigned
Replies: 3
Views: 864

Re: Disable the "Edit" button of a ticket when it is assigned

So nobody can edit anymore? Strange cuase then it stays assigned. I take it you mean that only the assignee can edit the post?
If that is what youe mean, as far as I know that would require changes to core files.