How can I tell what mantis version I'm running ?
Moderators: Developer, Contributor
How can I tell what mantis version I'm running ?
Hi,
New to this great system.
How do I know what mantis version is running on our server ?
Thank you,
Maxim.
New to this great system.
How do I know what mantis version is running on our server ?
Thank you,
Maxim.
Re: How can I tell what mantis version I'm running ?
Log in. Lower-left corner.hq4ever wrote:Hi,
New to this great system.
How do I know what mantis version is running on our server ?
Thank you,
Maxim.
What
This doesn't tell me much.Copyright © 2000 - 2004 Mantis Group
admin@OUR-DOMAIN.net
101 total queries executed.
68 unique queries executed.
Heh - Copyright 2004. That's pretty old. I'm guessing that either your admins removed the code that give the version number there or it wasn't present originally in that release.hq4ever wrote:WhatThis doesn't tell me much.Copyright © 2000 - 2004 Mantis Group
admin@OUR-DOMAIN.net
101 total queries executed.
68 unique queries executed.
I'm trying to estimate the effort required to upgrade this mantis to one of the recent versions.
For this I really do need to know what version I'm running now.
Is there some "Version" function I can call or something like this, could you look at your mantis and post the code that does the version deploying trick? I will then try to run it with my version and see what gives.
Any tips on upgrade path btw?
Thank you,
Maxim.
For this I really do need to know what version I'm running now.
Is there some "Version" function I can call or something like this, could you look at your mantis and post the code that does the version deploying trick? I will then try to run it with my version and see what gives.
Any tips on upgrade path btw?
Thank you,
Maxim.
Have a look in the folder mantis\doc for the ChangeLog.
Upgrade instructions here:
http://www.mantisbt.org/manual/manual.i ... rading.php
Upgrade instructions here:
http://www.mantisbt.org/manual/manual.i ... rading.php
Checkout the following configuration option in config_defaults_inc.php to know the version:
If you want to make this visible, then make sure the following option is set to ON in config_inc.php:
Code: Select all
# --- version variables -----------
$g_mantis_version = '1.1.0a2';
Code: Select all
$g_show_version = ON;
Migrate your MantisBT to the MantisHub Cloud
-
- Posts: 10
- Joined: 10 Jul 2015, 16:34
Re: How can I tell what mantis version I'm running ?
Or use:
grep MANTIS_VERSION ./core/constant_inc.php
Example (in bash shell):
grep MANTIS_VERSION ./core/constant_inc.php
Example (in bash shell):
Code: Select all
> grep MANTIS_VERSION ./core/constant_inc.php
define( 'MANTIS_VERSION', '1.2.17' );
-
- Posts: 10
- Joined: 10 Jul 2015, 16:34
Re:
The link below shows as not found, but this looks likely:
upgrad https://www.mantisbt.org/manual/admin.i ... grade.html
upgrad https://www.mantisbt.org/manual/admin.i ... grade.html
ed wrote:Have a look in the folder mantis\doc for the ChangeLog.
Upgrade instructions here:
http://www.mantisbt.org/manual/manual.i ... rading.php
-
- Posts: 16
- Joined: 19 May 2020, 16:58
Re: How can I tell what mantis version I'm running ?
MY VISION
- Attachments
-
- mantis_version.jpg (115.05 KiB) Viewed 3776 times