Page 1 of 1

How can I tell what mantis version I'm running ?

Posted: 01 Feb 2007, 11:05
by hq4ever
Hi,

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 ?

Posted: 01 Feb 2007, 20:11
by anderiv
hq4ever wrote:Hi,

New to this great system.

How do I know what mantis version is running on our server ?

Thank you,
Maxim.
Log in. Lower-left corner.

Posted: 01 Feb 2007, 21:13
by hq4ever
What
Copyright © 2000 - 2004 Mantis Group
admin@OUR-DOMAIN.net
101 total queries executed.
68 unique queries executed.
This doesn't tell me much.

Posted: 01 Feb 2007, 21:21
by anderiv
hq4ever wrote:What
Copyright © 2000 - 2004 Mantis Group
admin@OUR-DOMAIN.net
101 total queries executed.
68 unique queries executed.
This doesn't tell me much.
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.

Posted: 01 Feb 2007, 22:49
by hq4ever
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.

Posted: 02 Feb 2007, 04:59
by ed
Have a look in the folder mantis\doc for the ChangeLog.

Upgrade instructions here:

http://www.mantisbt.org/manual/manual.i ... rading.php

Posted: 02 Feb 2007, 05:40
by vboctor
Checkout the following configuration option in config_defaults_inc.php to know the version:

Code: Select all

# --- version variables -----------
$g_mantis_version		= '1.1.0a2';
If you want to make this visible, then make sure the following option is set to ON in config_inc.php:

Code: Select all

$g_show_version			= ON;

Re: How can I tell what mantis version I'm running ?

Posted: 07 Dec 2015, 17:14
by doug_stevens
Or use:

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' );

Re:

Posted: 07 Dec 2015, 17:19
by doug_stevens
The link below shows as not found, but this looks likely:
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

Re: How can I tell what mantis version I'm running ?

Posted: 17 Aug 2022, 12:56
by fmildemberger
MY VISION