With a little bit of searching you would have fiund:
https://www.mantisbt.org/bugs/view.php?id=12381
Search found 988 matches
- 29 Dec 2020, 14:40
- Forum: General Discussion
- Topic: APPLICATION ERROR #2800
- Replies: 1
- Views: 69
- 29 Dec 2020, 07:58
- Forum: Help
- Topic: Email works, but no email notifications
- Replies: 3
- Views: 92
Re: Email works, but no email notifications
Look @ this issue:
https://www.mantisbt.org/bugs/view.php?id=23423
So now you know where to look. Check out the settings.
go to:
Manage
Manage configuration
E-Mail configuration
https://www.mantisbt.org/bugs/view.php?id=23423
So now you know where to look. Check out the settings.
go to:
Manage
Manage configuration
E-Mail configuration
- 28 Dec 2020, 14:31
- Forum: Help
- Topic: 32MB file uploads - how?
- Replies: 7
- Views: 4880
Re: 32MB file uploads - how?
Check your PHP settings, see here: https://stackoverflow.com/questions/2184513/change-the-maximum-upload-file-size In Mantis add code below to core\config_inc.php and change value to your liking but ensure that the PHP settings support this also: /** * Maximum file size (bytes) that can be uploaded....
- 23 Dec 2020, 15:28
- Forum: Customizations
- Topic: Selecting required fields on resolve a case
- Replies: 3
- Views: 396
Re: Selecting required fields on resolve a case
In that case set in core/config_inc.php the following setting:
$g_bug_resolution_fixed_threshold = OPEN;
This should do the trick
$g_bug_resolution_fixed_threshold = OPEN;
This should do the trick
- 23 Dec 2020, 12:35
- Forum: Customizations
- Topic: Selecting required fields on resolve a case
- Replies: 3
- Views: 396
Re: Selecting required fields on resolve a case
Think you are referring to certain custom fields. That is set within the definition of the custom field. So review the definition and adjust accordingly
- 23 Dec 2020, 11:37
- Forum: Help
- Topic: LDAP authentication - Error
- Replies: 17
- Views: 3670
Re: LDAP authentication - Error
Please check with the creators of this plugin. I do not use it myself
- 23 Dec 2020, 11:35
- Forum: General Discussion
- Topic: Possibility to send reset password link using a PHP script
- Replies: 1
- Views: 137
Re: Possibility to send reset password link using a PHP script
I have made an import-user plugin which is available here: https://github.com/mantisbt-plugins/import_user 

- 22 Dec 2020, 11:57
- Forum: Help
- Topic: LDAP-Able to fetch email but got error as Your a/c may be disabled/blocked or the username/pw you entered is incorrect.
- Replies: 2
- Views: 96
Re: LDAP-Able to fetch email but got error as Your a/c may be disabled/blocked or the username/pw you entered is incorre
It means your config is not properly setup. There is plenty written in this forum on enabling LDAP.
Your answer is there, you just need to find it
Your answer is there, you just need to find it

- 22 Dec 2020, 11:55
- Forum: Help
- Topic: LDAP authentication - Error
- Replies: 17
- Views: 3670
Re: LDAP authentication - Error
when you download, you get the name "SampleAuth-master".
When you move this to the plugin directory, ensure to change the name of the directory to "SampleAuth"
That will do the trick
When you move this to the plugin directory, ensure to change the name of the directory to "SampleAuth"
That will do the trick

- 19 Dec 2020, 15:12
- Forum: Help
- Topic: LDAP authentication - Error
- Replies: 17
- Views: 3670
Re: LDAP authentication - Error
It is also available for Mantis 2.x, see my website www.nuy.info/mantis2 

- 15 Dec 2020, 10:50
- Forum: Help
- Topic: sending attachment via post
- Replies: 7
- Views: 179
Re: sending attachment via post
if you download the attachment to a temp location, you have the correct path where it is stored. Does not matter if you send it by mail or send a curl link. So download the file using file_download.php and point you cUrl to that location. After confirmation that is has been transmitted, you can add ...
- 15 Dec 2020, 08:31
- Forum: Help
- Topic: sending attachment via post
- Replies: 7
- Views: 179
Re: sending attachment via post
Well in the end you need to download the file and attach to your mail. Not sure if you would like to bypass all authorization checks in Mantis itself but in principle you can get this done by calling this program: file_download.php?file_id=' . $t_id . '&type=bug' Once you have file_id of the att...
- 14 Dec 2020, 19:29
- Forum: Help
- Topic: sending attachment via post
- Replies: 7
- Views: 179
Re: sending attachment via post
All required functions you can find in core/file_api.php .
- 14 Dec 2020, 16:52
- Forum: Help
- Topic: sending attachment via post
- Replies: 7
- Views: 179
Re: sending attachment via post
Think you have stored the files in the database. Via the admin section, you can move them to a file location 

- 14 Dec 2020, 12:04
- Forum: Help
- Topic: Trouble Installing -- timeouts
- Replies: 3
- Views: 106
Re: Trouble Installing -- timeouts
The version you can see in the bottom left corner.
The existing config_inc.php had a link to the DB on the old server hence you most likely got a time-out.
First move everything to the new server, adjust the config_inc.php and then try the upgrade.
The existing config_inc.php had a link to the DB on the old server hence you most likely got a time-out.
First move everything to the new server, adjust the config_inc.php and then try the upgrade.
