Quote:
Originally Posted by Erwin
I was using vBA 2.1.0 and Links 2.2.1 with no problems.
I upgraded vBA to 2.2.0 and then Links to 2.2.5 - I get this error on vBa index:
=======================================
Unexpected critical failure
Critical Error: Links and Downloads Manager v.2.2.5 requires VBulletin version 3.5
=======================================
Any ideas?
|
Check that you've uploaded the latest includes/local_links_init.php. This has the following code to select the VB version:
PHP Code:
if (isset($GLOBALS['vbulletin']->db)) {
$vb_version = substr($vbulletin->options['templateversion'], 0, 3);
if ($vb_version == "3.5") {
define('VALID_VB_VERSION', "3.5");
} elseif ($vb_version == "3.6") {
define('VALID_VB_VERSION', "3.6");
}
}
If that's installed correctly, then your site must be behaving differently than mine, and we need to get to the bottom of this.