Quote:
Originally Posted by NuclioN
Don't know sir, it now gives an error by step 5:
Database error in vBulletin 3.5.2:
Invalid SQL:
UPDATE forum
SET
`ucash_perthread` = '1',
`ucash_perreply` = '1',
`ucash_perview` = '1';
MySQL Error : Unknown column 'ucash_perthread' in 'field list'
Error Number : 1054
|
Do the following to delete all instances of ushop and ucash (this will delete everything in ushop and ucash)
Code:
DELETE *
FROM `yoursite_test`.`datastore`
WHERE `title` LIKE '%ushop%'
OR `data` LIKE '%ushop%'
LIMIT 0 , 30
Then
Code:
DELETE *
FROM `yoursite_test`.`datastore`
WHERE `title` LIKE '%ucash%'
OR `data` LIKE '%ucash%'
LIMIT 0 , 30
Replace yoursite with whatever your databases have before the name.