Search found 1622 matches

by cas
07 Oct 2020, 18:41
Forum: General Plugin Discussion
Topic: Email output could be much prettier
Replies: 73
Views: 2386077

Re: Email output could be much prettier

By the way, the template can contain of course HTML :wink:
by cas
07 Oct 2020, 15:18
Forum: General Plugin Discussion
Topic: Email output could be much prettier
Replies: 73
Views: 2386077

Re: Email output could be much prettier

Just for fun, I have investigated , how it could work for the body of the email message/ Within core/email_api.php i have adjusted function "email_bug_info_to_one_user" to allow to build the body. This is triggered by a setting in config/config_inc.php called "$g_use_mailtemplate"...
by cas
07 Oct 2020, 13:23
Forum: Help
Topic: Error with update project: new field added
Replies: 2
Views: 5773

Re: Error with update project: new field added

Did you add the field at the end of the table?
If not, make sure the new field is at the end and that you extend the different statements adding the field as last.
Now try again, if persists also provide the contents of the line in error.
by cas
06 Oct 2020, 12:49
Forum: Help
Topic: how to get filenames of attachements saved to disk?
Replies: 2
Views: 2127

Re: how to get filenames of attachements saved to disk?

The answer is in the mantis_bug_file_table :mrgreen:
by cas
05 Oct 2020, 12:30
Forum: General Discussion
Topic: Is Mantis Free to use
Replies: 8
Views: 8645

Re: Is Mantis Free to use

simply share them here if you think it can be useful for others :mrgreen:
by cas
04 Oct 2020, 08:50
Forum: General Discussion
Topic: Is Mantis Free to use
Replies: 8
Views: 8645

Re: Is Mantis Free to use

Feel free to use and to customize as you please.
All is asked, is to share improvements with the community
by cas
04 Oct 2020, 07:45
Forum: Customizations
Topic: [solved] Change / modify issue / bug lists HTML with plugin or so?
Replies: 5
Views: 7490

Re: [solved] Change / modify issue / bug lists HTML with plugin or so?

see when I find time for it. This is mostly the problem. code is so unbelievable unstructured and unorganized I disagree here. You are new to Mantisbt so need to l"learn" how it is working. You will find overtime that is less unstructured and unorganized than you feel right now :mrgreen: ...
by cas
04 Oct 2020, 07:41
Forum: Deutsch
Topic: Add Relationship Event
Replies: 4
Views: 16246

Re: Add Relationship Event

Im Vergangenheit hat das schon functioniert bei einer meine Plugins. Gut zu wissen wie ich das sollte lösen wenn es nicht mehr geht :mrgreen:
by cas
03 Oct 2020, 10:52
Forum: Deutsch
Topic: Add Relationship Event
Replies: 4
Views: 16246

Re: Add Relationship Event

das geht auch in den Plugin.
Man muss nur hinzu fügen:
function init() {
event_declare('EVENT_MYVIEW');
by cas
02 Oct 2020, 13:56
Forum: Help
Topic: upgrade Mantis 1.2.19 to 2.24.3
Replies: 1
Views: 2250

Re: upgrade Mantis 1.2.19 to 2.24.3

Yes you can ( but do ensure a backup is available), MYSQL is fine, PHP is fine
First transfer the old version completely to the new server and ensure it is working, next follow the instructions as can be found in the admin guide :mrgreen:
by cas
02 Oct 2020, 13:51
Forum: Help
Topic: 2.20 to last version - lost administrators access
Replies: 2
Views: 2158

Re: 2.20 to last version - lost administrators access

Open your database with phpmyadmin or similar tool and open the matis_user_table. Look up the user-id and ensure it has access_level 90 Next set the password value to : 63a9f0ea7bb98050796b649e85481845 Now you can login with the user-id and the password would be : root Of course you need to change t...
by cas
01 Oct 2020, 08:38
Forum: Customizations
Topic: [solved] Redirect to table after bug creation / update?
Replies: 11
Views: 8866

Re: [solved] Redirect to table after bug creation / update?

Suggest you examine config_defaults_inc.php so you get a feel what is already standard available, most likely more than you expect :mrgreen:
by cas
30 Sep 2020, 19:23
Forum: Customizations
Topic: [solved] Redirect to table after bug creation / update?
Replies: 11
Views: 8866

Re: [solved] Redirect to table after bug creation / update?

it is a standard config as you can find in config_defaults_inc.php
by cas
30 Sep 2020, 18:28
Forum: Customizations
Topic: [solved] Redirect to table after bug creation / update?
Replies: 11
Views: 8866

Re: [solved] Redirect to table after bug creation / update?

Nice, will try it out. Just wondering about the action to give new status to issue when assigned since this is standard available 8O
by cas
30 Sep 2020, 09:31
Forum: Customizations
Topic: [solved] Redirect to table after bug creation / update?
Replies: 11
Views: 8866

Re: Redirect to table after bug creation / update?

With the standard available events it is not possible. Of course you can define your own events but then you need to adjust core files to add that event. So think you are stuck with adjusting core files. Biggest challenge there is to maintain a complete overview of all changes made in case of future...