Search found 106 matches
- 03 Dec 2025, 19:41
- Forum: General Discussion
- Topic: Show version description in version list
- Replies: 2
- Views: 111
Re: Show version description in version list
Or could an additional version number label be added that is not textarea, and a shorter textbox for this purpose?
- 03 Dec 2025, 19:39
- Forum: General Discussion
- Topic: Show version description in version list
- Replies: 2
- Views: 111
Show version description in version list
Currently in version 2.27.3, when going to a project and viewing versions, only the version number is displayed along with a date and edit/delete buttons
https://imgur.com/23a820S.jpg
When clicking edit we see the description as well
https://imgur.com/a5iFacZ.jpg
Is it possible to get the ...
https://imgur.com/23a820S.jpg
When clicking edit we see the description as well
https://imgur.com/a5iFacZ.jpg
Is it possible to get the ...
- 12 Nov 2025, 18:44
- Forum: General Plugin Discussion
- Topic: HTML Email notifications for Mantis 2.x
- Replies: 17
- Views: 21357
Re: HTML Email notifications for Mantis 2.x
I recently upgraded from 2.27.0 to 2.27.3
If you are indeed using HTML email notifications here are your extra steps after the main package upgrade has completed and system is known up and working properly.
1) When upgrading to a new version of Mantis, be sure to copy the template files to the new ...
If you are indeed using HTML email notifications here are your extra steps after the main package upgrade has completed and system is known up and working properly.
1) When upgrading to a new version of Mantis, be sure to copy the template files to the new ...
- 19 Sep 2025, 13:37
- Forum: General Discussion
- Topic: Out of date jquery in 2.27.0
- Replies: 7
- Views: 10132
Re: Out of date jquery in 2.27.0
No problems with the new jquery
- 23 Jan 2025, 15:04
- Forum: General Discussion
- Topic: Is it safe to migrate from utf8_general_ci to utf8mb4_unicode_ci?
- Replies: 6
- Views: 11636
Re: Is it safe to migrate from utf8_general_ci to utf8mb4_unicode_ci?
I wish it were as easy as just choosing a new collation in MySQL. I didn't read all of the code history but looking at it through 2025 eyes it's weird that a collation was specifically hard-coded into an application. I'm sure there were valid reasons at the time but it looks off in 2025.
- 09 Jan 2025, 16:44
- Forum: General Discussion
- Topic: Is it safe to migrate from utf8_general_ci to utf8mb4_unicode_ci?
- Replies: 6
- Views: 11636
Re: Is it safe to migrate from utf8_general_ci to utf8mb4_unicode_ci?
Should anyone else want to take a peek or work on this here are the ALTERS needed to migrate to utf8mb4_unicode_ci
ALTER DATABASE bugtracker CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTER TABLE `mantis_api_token_table` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTER ...
ALTER DATABASE bugtracker CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTER TABLE `mantis_api_token_table` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTER ...
- 09 Jan 2025, 16:42
- Forum: General Discussion
- Topic: Is it safe to migrate from utf8_general_ci to utf8mb4_unicode_ci?
- Replies: 6
- Views: 11636
Re: Is it safe to migrate from utf8_general_ci to utf8mb4_unicode_ci?
Converting the database itself to utf8mb4_unicode_ci was easy.
It looks like the Mantis codebase is hardcoded in a ton of places to only use utf8, I'm guessing this is a relic of the past.. because utf8mb4_unicode_ci is pretty much the standard for today.
I'd hoped this would be easy... but I'd ...
It looks like the Mantis codebase is hardcoded in a ton of places to only use utf8, I'm guessing this is a relic of the past.. because utf8mb4_unicode_ci is pretty much the standard for today.
I'd hoped this would be easy... but I'd ...
- 09 Jan 2025, 14:30
- Forum: General Discussion
- Topic: Is it safe to migrate from utf8_general_ci to utf8mb4_unicode_ci?
- Replies: 6
- Views: 11636
Is it safe to migrate from utf8_general_ci to utf8mb4_unicode_ci?
My users want to use emoticons which requires utf8mb4_unicode_ci.. Is it generally safe to migrate to this new collation?
- 07 Jan 2025, 20:10
- Forum: General Discussion
- Topic: Out of date jquery in 2.27.0
- Replies: 7
- Views: 10132
Re: Out of date jquery in 2.27.0
Just needed to complete Database Update from the 2.27.0 upgrade.
Putting jquery 3.7.1 back into play.
Putting jquery 3.7.1 back into play.
- 07 Jan 2025, 19:35
- Forum: General Discussion
- Topic: After updating from 2.26.1 to 2.27.0 unable to select Category
- Replies: 1
- Views: 7159
Re: After updating from 2.26.1 to 2.27.0 unable to select Category
Please delete - I just noticed the Update Database tab under Administration/settings.
All good, I have my categories now
All good, I have my categories now
- 07 Jan 2025, 19:33
- Forum: General Discussion
- Topic: After updating from 2.26.1 to 2.27.0 unable to select Category
- Replies: 1
- Views: 7159
After updating from 2.26.1 to 2.27.0 unable to select Category
After performing an update from 2.26.1 to 2.27.0, I'm finding that I am not able to select a Category. Viewing source, it appears that I have no category items for any project - although, I do.
<select id="category_id" name="category_id" class="autofocus input-sm" tabindex="1" required ...
<select id="category_id" name="category_id" class="autofocus input-sm" tabindex="1" required ...
- 07 Jan 2025, 19:28
- Forum: General Discussion
- Topic: Out of date jquery in 2.27.0
- Replies: 7
- Views: 10132
Re: Out of date jquery in 2.27.0
Note that I just backed out that change to 3.7.1 due to a new issue I found in 2.27.0
# inactive:
#define( 'JQUERY_VERSION', '3.7.1' );
#define( 'JQUERY_HASH', 'sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=' );
# active:
define( 'JQUERY_VERSION', '2.2.4' );
define( 'JQUERY_HASH', 'sha256 ...
# inactive:
#define( 'JQUERY_VERSION', '3.7.1' );
#define( 'JQUERY_HASH', 'sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=' );
# active:
define( 'JQUERY_VERSION', '2.2.4' );
define( 'JQUERY_HASH', 'sha256 ...
- 07 Jan 2025, 19:06
- Forum: General Discussion
- Topic: Out of date jquery in 2.27.0
- Replies: 7
- Views: 10132
Re: Out of date jquery in 2.27.0
No just a general error that there are multiple XSS vulnerabilities with sites that use out of date jquery
- 07 Jan 2025, 19:05
- Forum: General Discussion
- Topic: Out of date jquery in 2.27.0
- Replies: 7
- Views: 10132
Re: Out of date jquery in 2.27.0
1) Downloaded the latest jquery 3.7.1 and placed in the mantisbt-2.27.0/js directory
2) Updated mantisbt-2.27.0/core/constant_inc.php
# JQuery
# hashes acquired with command 'cat file.js | openssl dgst -sha256 -binary | openssl enc -base64 -A'
define( 'JQUERY_VERSION', '3.7.1' );
define( 'JQUERY ...
2) Updated mantisbt-2.27.0/core/constant_inc.php
# JQuery
# hashes acquired with command 'cat file.js | openssl dgst -sha256 -binary | openssl enc -base64 -A'
define( 'JQUERY_VERSION', '3.7.1' );
define( 'JQUERY ...
- 07 Jan 2025, 18:47
- Forum: General Discussion
- Topic: Out of date jquery in 2.27.0
- Replies: 7
- Views: 10132
Out of date jquery in 2.27.0
Tenable found that the installed jquery with Mantis 2.27.0 is out of date and thus subject to multiple XSS vulnerabilities.
URL : https://mantis.genetics.emory.edu/js/jquery-2.2.4.min.js
Installed version : 2.2.4
Fixed version : 3.5.0
Could we look at getting this updated with a current jquery ...
URL : https://mantis.genetics.emory.edu/js/jquery-2.2.4.min.js
Installed version : 2.2.4
Fixed version : 3.5.0
Could we look at getting this updated with a current jquery ...