Upgrade 1.1.1 to 1.1.8 error #2700

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
lmarincl
Posts: 3
Joined: 31 Jul 2009, 03:20
Location: Chile
Contact:

Upgrade 1.1.1 to 1.1.8 error #2700

Post by lmarincl »

Hi everyone

I have 1.1.1 version of Mantis. Im upgrade to 1.1.8 version and Im getting below error:

APPLICATION ERROR #2700
Invalid session handler.
Please use the "Back" button in your web browser to return to the previous page. There you can correct whatever problems were identified in this error or select another action. You can also click an option from the menu bar to go directly to a new section.


Please help me how I can fix it, or is there any other ways to upgrade the version of Mantis .

Tanks in advance.

Luis Marin
lmarincl
Posts: 3
Joined: 31 Jul 2009, 03:20
Location: Chile
Contact:

Re: Upgrade 1.1.1 to 1.1.8 error #2700

Post by lmarincl »

The error occurred because I replaced the file config_defaults.php in the 1.1.1. directory’s for the same file in the 1.1.8. directory.

The files are different, not replace it.

Edit it manually.


#############################
# Web Server 1.1.1 version
#############################

# Using Microsoft Internet Information Server (IIS)
if ( isset( $_SERVER['SERVER_SOFTWARE'] ) ) { # SERVER_SOFTWARE in case of php-cgi.exe
$g_use_iis = ( strstr( $_SERVER['SERVER_SOFTWARE'], 'IIS' ) !== false ) ? ON : OFF;
} else {
$g_use_iis = OFF;
}


#############################
# Web Server 1.1.8 version
#############################

# Using Microsoft Internet Information Server (IIS)
if ( isset( $_SERVER['SERVER_SOFTWARE'] ) ) { # SERVER_SOFTWARE not defined in case of php-cgi.exe
$g_use_iis = ( strstr( $_SERVER['SERVER_SOFTWARE'], 'IIS' ) !== false ) ? ON : OFF;
} else {
$g_use_iis = OFF;
}

# Session handler. Possible values:
# 'php' -> Default PHP filesystem sessions
# 'adodb' -> Database storage sessions
# 'memcached' -> Memcached storage sessions
$g_session_handler = 'php';

# Session key name. Should be unique between multiple installations to prevent conflicts.
$g_session_key = 'MantisBT';

# Session save path. If false, uses default value as set by session handler.
$g_session_save_path = false;

# Form security validation.
# This protects against Cross-Site Request Forgery, but some proxy servers may
# not correctly work with this option enabled because they cache pages incorrectly.
# WARNING: Disabling this IS a security risk!!
$g_form_security_validation = ON;
moricio
Posts: 4
Joined: 15 May 2008, 20:26

Re: Upgrade 1.1.1 to 1.1.8 error #2700

Post by moricio »

Hi.

Can you, please, post your procedure for the upgrade? I have been unsucessful in doing so. Thanks in advance.

MRamirez
Post Reply