Quote:
Originally Posted by MajorFm.com
Ok small problem, just installed, i had the previous version already installed on my previous version of vb, so i want to keep all existing warn data, so i assume i don't delete existing tables etc...
I got this error when importing the product:
Please advise what do to, in done everything else but see no changes on my forum!
|
previous version ? the vb 3 version ? then you must run uninstall.php before you install the 3.5.x version.You must create a back from this tables
- user
- warnings
- warning_types
- pmtext_warned
- warn_notes
- ban_dates
- post
then you can restore this later on .....I suggest you start with clean 3.5.x files you can try to run this
Code:
SELECT * FROM " . TABLE_PREFIX . "setting WHERE varname like 'warn_%';
that will return all the settings used by the system.If you don't want them any longer
Code:
DELETE FROM " . TABLE_PREFIX . "setting WHERE varname like 'warn_%';
allthrough be carefull with this and keep tableprefixex in mind