Run this SQL
PHP:ALTER TABLE `items` ADD COLUMN `placedBy` int(10) NULL DEFAULT 0 AFTER `group_data`;
[Err] 1054 - Unknown column 'group_data' in 'items'
[Err] ALTER TABLE `items`
ADD COLUMN `placedBy` int(10) NULL DEFAULT 0 AFTER `group_data`;
CREATE TABLE IF NOT EXISTS `items` (
`item_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`base_id` smallint(5) unsigned DEFAULT NULL,
`rareid` int(11) NOT NULL DEFAULT '0',
`group_data` varchar(200) NOT NULL DEFAULT '',
`placedBy` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`item_id`),
UNIQUE KEY `id_UNIQUE` (`item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=48 ;
Add group_data column in items tableGot this error,
Code:[Err] 1054 - Unknown column 'group_data' in 'items' [Err] ALTER TABLE `items` ADD COLUMN `placedBy` int(10) NULL DEFAULT 0 AFTER `group_data`;
Try running that, I had the same issue with a hotel I work for
PHP:CREATE TABLE IF NOT EXISTS `items` ( `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `base_id` smallint(5) unsigned DEFAULT NULL, `rareid` int(11) NOT NULL DEFAULT '0', `group_data` varchar(200) NOT NULL DEFAULT '', `placedBy` int(10) NOT NULL DEFAULT '0', PRIMARY KEY (`item_id`), UNIQUE KEY `id_UNIQUE` (`item_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=48 ;
You need to update headers. Some aren't working.Thanks for sharing that, the query worked but.. same problem
Edit:
Getting this in Emu