PDA

View Full Version : Installation Question


MtnDewMan
06-26-2004, 11:59 PM
I have a general question as I have to move my site. Since I will be essentially reinstalling on the new server, I want to keep major vbadvanced settings in place.

1. What tables get added via vbadvanced? There are vba_ tables I see, are there any others? Is phrases part of vbulletin or new to vbadvanced?

2. What tables that are already part of vbulletin 3 get modified during the installation of vbadvanced?

3. What tables in vbadvanced get modified as part of the tweaking process, such as style settings, system settings, and so on?

I guess the bottom line is, what are all of the tables that vbadvanced touches so that I can preserve them or attempt to preserve them?

Thanks

Brian
06-30-2004, 11:58 AM
Tables added - adv_setting, adv_settinggroup, adv_pages, adv_modules

Other stuff:
ALTER TABLE " . TABLE_PREFIX . "language ADD phrasegroup_adv_portal MEDIUMTEXT NOT NULL;
ALTER TABLE " . TABLE_PREFIX . "language ADD phrasegroup_adv_portal_cp MEDIUMTEXT NOT NULL;

INSERT INTO " . TABLE_PREFIX . "phrasetype VALUES (569, 'adv_portal', 'vBadvanced CMPS', 3);
INSERT INTO " . TABLE_PREFIX . "phrasetype VALUES (570, 'adv_portal_cp', 'vBadvanced CMPS CP', 3);

INSERT INTO " . TABLE_PREFIX . "datastore VALUES ('adv_portal_opts', '');
INSERT INTO " . TABLE_PREFIX . "datastore VALUES ('adv_modules', '');

Our Sponsors
 

MtnDewMan
07-01-2004, 06:16 PM
Excellent ... just what I needed.

Thanks