How do I run a query on Vbulletin ?
I found a hack, and it tells me to do this.
Quote:
Run the following two queries
Query #1
create table customsiguploader
( userid int unsigned not null default 0
, siguploaderdata mediumtext not null
, dateline int unsigned not null default 0
, filename varchar(100) not null default ''
, visible smallint not null default 1
, filesize int unsigned not null default 0
, primary key (userid)
)
Query #2
ALTER TABLE usergroup ADD (
siguploadermaxwidth SMALLINT UNSIGNED NOT NULL DEFAULT '0',
siguploadermaxheight SMALLINT UNSIGNED NOT NULL DEFAULT '0',
siguploadermaxsize INT UNSIGNED NOT NULL DEFAULT '0',
siguploaderpermissions INT(10) UNSIGNED NOT NULL DEFAULT '0'
)
|