Change the creation of the table in the xml file for this
Code:
// Character Professions
$vbulletin->db->query("
CREATE TABLE IF NOT EXISTS " . TABLE_PREFIX . "gwowroster_charinfo_prof (
`locale` VARCHAR( 2 ) NOT NULL ,
`realm` VARCHAR( 50 ) NOT NULL ,
`name` VARCHAR( 50 ) NOT NULL ,
`charname` VARCHAR( 50 ) NOT NULL ,
`key` VARCHAR( 50 ) NOT NULL ,
`updated` INT( 150 ) NOT NULL ,
`primary` INT( 1 ) NOT NULL ,
`profname` VARCHAR( 50 ) NOT NULL ,
`max` INT( 10 ) NOT NULL ,
`value` INT( 10 ) NOT NULL ,
PRIMARY KEY ( `locale`, `realm`, `name`, `charname`, `key` )
)
");
This mght help until the developer can address this issue. When using UTF there are just too many characters being specified, so I shortened them up.