ogameclub
Fri 20th Oct '06, 6:58pm
Database error in vBulletin 3.6.2:
MySQL Error:
Table 'xxx.infractionban' doesn't exist.
where is my infractionban table?
Steve Machol
Fri 20th Oct '06, 10:18pm
Database error in vBulletin 3.6.2:
MySQL Error:
Table 'xxx.infractionban' doesn't exist.
where is my infractionban table?
Apparently it doesn't exist. ;)
Are you using a table prefix? Have you installed any hacks, plugins or products?
If you are not using a table prefix, run this query to create that table:
CREATE TABLE infractionban (
infractionbanid int unsigned NOT NULL auto_increment,
usergroupid int NOT NULL DEFAULT '0',
banusergroupid int unsigned NOT NULL DEFAULT '0',
amount int unsigned NOT NULL DEFAULT '0',
period char(5) NOT NULL DEFAULT '',
method enum('points','infractions') NOT NULL default 'infractions',
PRIMARY KEY (infractionbanid),
KEY usergroupid (usergroupid)
);
ogameclub
Sat 21st Oct '06, 9:32pm
I had installed a preMod ad on. It may was.
I opened php phpMyAdmin, runned SQL query/queries on database with your code.
Oh my God! This was may infarktionban table! It was smiling. :)
vBulletin® v3.7.3, Copyright ©2000-2008, Jelsoft Enterprises Ltd.