This is a simple edit in one of the VBadvanced install files to allow it to install on a clean vB 3.8.x forum. You can get it from vBadvanced
The currently installer doesnt allow you to install on versions higher then 3.7.x, you can upgrade from 3.7 to 3.8 and the cms will still work. No problems have been found so far by installing Vba CMS on 3.8
Get the vBa CMS and open up: /admincp/vbacmps_install.php
Edit line 23:
change:
to
Edit line 35:
change:
to:
The currently installer doesnt allow you to install on versions higher then 3.7.x, you can upgrade from 3.7 to 3.8 and the cms will still work. No problems have been found so far by installing Vba CMS on 3.8
Get the vBa CMS and open up: /admincp/vbacmps_install.php
Edit line 23:
change:
Code:
define('IS_VB_37', (substr($vbulletin->options['templateversion'], 0, 3) == 3.7) ? true : false);
to
Code:
define('IS_VB_37', (substr($vbulletin->options['templateversion'], 0, 3) == 3.8) ? true : false);
Edit line 35:
change:
Code:
if (!in_array(substr($vbulletin->options['templateversion'], 0, 3), array(3.6, 3.7)))
to:
Code:
if (!in_array(substr($vbulletin->options['templateversion'], 0, 3), array(3.6, 3.7, 3.8)))