Quote:
Originally Posted by Triple_T
I think you mean "warnings" instead of "warning_bans" ?
Because with the last SQL you gave I got
|
MySQL Error : Unknown column 'warning_bans' in 'field list' Error Number : 1054
this is your error message from the first post you posted about it.MySQL says it doesn't know the "warning_bans" column.This field is used when warningtypes are issued that cause a ban (temprary or permanent) that column is in the standard vbulletin user table.To see if the field is missing
this will show you the "raw" table SQL.If the field it is indeed missing
Code:
ALTER TABLE user ADD COLUMN warning_bans INT(2) DEFAULT '0';