Go to upgrade the database.
Remove the following file after completing the above database Upgrade process :
'.$__settings['softpath'].'/install/modules/module.install.php';
}
}
//Check whether the Minimum Software configuration matches
function __requirements(){
global $__settings, $error, $software;
// Change this every time there is an update becuase the script can be updated only from successive versions i.e. 2.3.5 to 2.3.6
$allowed_ver = '2.3.5';
if(sversion_compare($__settings['ver'], $allowed_ver, '<')){
$error[] = 'It is not possible to upgrade Subrion from versions less than '.$allowed_ver;
}
return true;
}
?>