Log in

View Full Version : Odd Error


boxingscene
02-14-2014, 06:24 AM
I downgraded by VB from 3.8.5 to 3.8.2. (after an upgrade issue)

I reverted back all of the files and imported the backup database (3.8.2).

For whatever reason, the forum is working perfect without issue but the version at the footer, and admincp, continues to say VB 3.8.5

PsychoModz
02-14-2014, 11:51 AM
Check your ./includes/version_vbulletin.php. If you restored all files back to 3.8.2, then it should be:
<?php

define('FILE_VERSION_VBULLETIN', '3.8.2');

?>

ozzy47
02-14-2014, 11:53 AM
If that don't work do the following:

1) Turn on debug mode by adding the following to your includes/config.php
$config['Misc']['debug'] = true;

2) Go to ACP --> vBulletin Options --> vBulletin Options --> Version Info and Other Untouchables, and change ONLY the setting, vBulletin Version Number to 3.8.2

3) Turn off debug mode by removing the following to your includes/config.php
$config['Misc']['debug'] = true;

boxingscene
02-14-2014, 04:31 PM
If that don't work do the following:

1) Turn on debug mode by adding the following to your includes/config.php
$config['Misc']['debug'] = true;

2) Go to ACP --> vBulletin Options --> vBulletin Options --> Version Info and Other Untouchables, and change ONLY the setting, vBulletin Version Number to 3.8.2

3) Turn off debug mode by removing the following to your includes/config.php
$config['Misc']['debug'] = true;

That worked.

ozzy47
02-14-2014, 05:18 PM
Good stuff, glad it worked.