Found the cause of the problem.
Installing the latest version of BBCodePlus Plugin (Ver. 2.1.3) causes the issue. Details here:
https://github.com/mantisbt-plugins/BBC ... /issues/64
Search found 20 matches
- 04 Jun 2019, 20:48
- Forum: Help
- Topic: Issue Link URL incorrect in notification EMail
- Replies: 9
- Views: 6051
- 23 May 2019, 16:47
- Forum: Help
- Topic: Issue Link URL incorrect in notification EMail
- Replies: 9
- Views: 6051
Re: Issue Link URL incorrect in notification EMail
That's the only file I really did make any changes that are meaningful in this context I guess. I changed the strings_english.txt but that's basically cosmetic changes and I can't imagine that would make a difference.
- 23 May 2019, 16:45
- Forum: Help
- Topic: Issue Link URL incorrect in notification EMail
- Replies: 9
- Views: 6051
Re: Issue Link URL incorrect in notification EMail
I did adjust other files, including email related ones, but nothing really to do with the email content.
email_api.php to adjust subject:
The file content is too big to post here so I'll attach.
email_api.php to adjust subject:
The file content is too big to post here so I'll attach.
- 22 May 2019, 19:22
- Forum: Help
- Topic: Issue Link URL incorrect in notification EMail
- Replies: 9
- Views: 6051
Re: Issue Link URL incorrect in notification EMail
I assume you mean config/config_inc.php? Here it is: <?php $g_hostname = 'localhost'; $g_db_type = 'mysqli'; $g_database_name = '{removed}'; $g_db_username = '{removed}'; $g_db_password = '{removed}'; $g_default_timezone = 'America/Los_Angeles'; $g_crypto_master_salt = 'iRY8t6h9E10cSB6I1fpxgaTHUML3M...
- 21 May 2019, 19:11
- Forum: Help
- Topic: Issue Link URL incorrect in notification EMail
- Replies: 9
- Views: 6051
Re: Issue Link URL incorrect in notification EMail
If you can point out potentially problematic files, I can post the contents here.
- 21 May 2019, 19:08
- Forum: Help
- Topic: Issue Link URL incorrect in notification EMail
- Replies: 9
- Views: 6051
Re: Issue Link URL incorrect in notification EMail
I don't understand - where do you mean?
- 20 May 2019, 22:24
- Forum: Help
- Topic: Issue Link URL incorrect in notification EMail
- Replies: 9
- Views: 6051
Issue Link URL incorrect in notification EMail
When a new issue is registered, the issue URL of the notification email that the assignee receives seem to be broken. Correct issue URL is normally of this form: http://{mysite}/tracker/view.php?id=39 However, in the notification EMail I get, the link looks like this: The following issue has been SU...
- 17 May 2019, 21:43
- Forum: Customizations
- Topic: Is it possible to have Enumerations with no selection at first?
- Replies: 1
- Views: 2927
Re: Is it possible to have Enumerations with no selection at first?
Figured it out.
In the possible values list of an Enumeration, if you start with a '|', then it will not have anything selected by default, and will generate an error upon submitting.
To summarize:
A|B|C ==> Selects A by default.
|A|B|C| ==> Doesn't select anything by default.
In the possible values list of an Enumeration, if you start with a '|', then it will not have anything selected by default, and will generate an error upon submitting.
To summarize:
A|B|C ==> Selects A by default.
|A|B|C| ==> Doesn't select anything by default.
- 17 May 2019, 18:56
- Forum: Customizations
- Topic: Is it possible to have Enumerations with no selection at first?
- Replies: 1
- Views: 2927
Is it possible to have Enumerations with no selection at first?
In my bug tracker, I have a few Enumeration fields which must be 'required' entries when submitting an issue. However, a custom Enumeration field asks for a set of possible values, and by default it's always set to the first value in the list. This is a problem since, if the user didn't select a val...
- 16 May 2019, 18:04
- Forum: Customizations
- Topic: Different Field Name Aliases per Project?
- Replies: 7
- Views: 6577
Re: Different Field Name Aliases per Project?
That's a bummer.
Well what you could is possible I guess, but would have been so much nicer if we had this feature.
Well what you could is possible I guess, but would have been so much nicer if we had this feature.
- 15 May 2019, 20:42
- Forum: Customizations
- Topic: Different Field Name Aliases per Project?
- Replies: 7
- Views: 6577
Different Field Name Aliases per Project?
Is there a way to give different aliases for the same fields, based on project. My requirement is to have different projects with different set of fields, and I know I can use custom fields for this, and then hide the unwanted fields by using the bug_report_page_fields configuration option. But ther...
- 18 Mar 2019, 20:19
- Forum: Help
- Topic: EMail Verification Link Broken
- Replies: 2
- Views: 2057
Re: EMail Verification Link Broken
I did some digging around in the code and found that the string_html_specialchars function looks like this:
Removed the 'amp;' from it, and now works fine.
Is this supposed to be correct or is this a bug?
My edited version (which works) look like this:
Removed the 'amp;' from it, and now works fine.
Is this supposed to be correct or is this a bug?
My edited version (which works) look like this:
- 18 Mar 2019, 17:24
- Forum: Help
- Topic: EMail Verification Link Broken
- Replies: 2
- Views: 2057
EMail Verification Link Broken
When a new user signs up, in the verification email that receives the link is broken. If the link in the EMail is clicked, I get the following error: APPLICATION ERROR #200 A required parameter to this page (confirm_hash) was not found. Following is a sample Email that I get upon new user registrati...
- 13 Mar 2019, 17:40
- Forum: Help
- Topic: Installation Check fails for Fileinfo PHP Extension
- Replies: 8
- Views: 8208
Re: Installation Check fails for Fileinfo PHP Extension
I'm attaching the PHP72x64_errors.log here, right after attempting two (.txt and a .png) file uploads. Both times I get the same error message: TXT Upload: [13-Mar-2019 10:33:48 America/Los_Angeles] finfo::finfo(): Failed to load magic database at '(null)'. C:\Websites\LAT\mantis\core\file_api.php: ...
- 13 Mar 2019, 16:55
- Forum: Help
- Topic: Installation Check fails for Fileinfo PHP Extension
- Replies: 8
- Views: 8208
Re: Installation Check fails for Fileinfo PHP Extension
Yes, and at the time it verified that php was working fine. It did give a bunch of other errors/warnings such as email related which I fixed one by one. It actually started working and attachments were successful. After that I installed the BBCodePlus plugin, and while working on that, later, I real...