Latest UI - Placing item's bug

Jacob

Member
Oct 7, 2011
54
9
dktroYZ.png


I have no clue why it's doing that, if you could help me that'd be great thanks!
 

Jacob

Member
Oct 7, 2011
54
9
Run this SQL
PHP:
ALTER TABLE `items`
ADD COLUMN `placedBy`  int(10) NULL DEFAULT 0 AFTER `group_data`;

Got 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`;
 

Meap

Don't need glasses if you C#
Nov 7, 2010
1,045
296
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 ;
 

Jacob

Member
Oct 7, 2011
54
9
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 ;

Thanks for sharing that, the query worked but.. same problem :(

Edit:

Getting this in Emu

6w4q7q9.png
 
Last edited:

Jacob

Member
Oct 7, 2011
54
9
Still looking to get this fixed!


UPDATE:

I've found a fix, the problem was to do with IIS - I have fixed it by going to XAMPP..
 
Last edited:

Evilsmoothie

Mad kung-fu artist
Feb 11, 2013
446
57
Well, you can start by posting the error logs. It's not a header issue, and I have a feeling just turning mysql strict mode off will solve it aswell.
 
Last edited:

Users who are viewing this thread

Top