Ok these edits I'm posting are if you us vbadvanced portal 2.0 then follow these steps:
In your vba_cmps_include_template.php find:
Code:
$specialtemplates = array_merge($specialtemplates,
array(
'adv_modules',
'adv_portal_opts',
'adv_portal_page',
'attachmentcache',
'bbcodecache',
'birthdaycache',
'eventcache',
'iconcache',
'maxloggedin',
'rankphp',
'smiliecache',
'userstats',
)
);
Replace with:
Code:
$specialtemplates = array_merge($specialtemplates,
array(
'adv_modules',
'adv_portal_opts',
'adv_portal_page',
'attachmentcache',
'bbcodecache',
'birthdaycache',
'eventcache',
'iconcache',
'maxloggedin',
'rankphp',
'smiliecache',
'userstats',
'vbart_options'
)
);
In your vba_cmps_include_top.php find:
Code:
$cmps_options = unserialize($datastore['adv_portal_opts']);
Add Above:
Code:
$vbart_options = unserialize($datastore['vbart_options']);
unset($datastore['vbart_options']);
Enjoy and glad I could help.