Quote:
Originally Posted by Delphiprogrammi
hi,
MySQL errors
you are for some reason missing some requirerd tables in your database to add the "removed by" field run
Code:
ALTER TABLE vb_warnings ADD COLUMN removed_by int(15);
to add the "warned_status" field
Code:
ALTER TABLE vb_warnings ADD COLUMN warned_status char(1);
the blank page problem
are you using more then one (the default) vbulletin style if so the install script only adds the aws templates to the master (default) style here's a hack that allows you to copy templates from one style to another
|
I am not sure why this thing is happening, people are having problems with some fields in the warnings table. Check which fields you have there, and see if you have the ones shown in the query below. If not, run the query.
Code:
alter table ".TABLE_PREFIX."warnings
add `warned_status` char(1), add `caused_ban` char(1), add `removed_by` int(15), add `removed_date` int(15)