Could someone look at my site and give me an idea which data table I need to look at to fix this problem? I don't think it is a problem with the application, I think rather it is a corrupted record someplace that is producing the garbage. A consistent example seems to be the guild banks, but members that have been updated by the armory sync seem to also have problems with the display.
http://eternalstrength.net/roster/
What it is doing is stuff like this:
- Code: Select all
array(
'General' => array(
'Name' => 'Imperial Plate Bracers',
'ItemId' => '12425:0:0:0:0:0:0:208927874',
'ItemColor' => '1eff00',
'Icon' => 'inv_bracer_19',
'Slot' => 24,
'Parent' => 'Bank Bag0',
'Tooltip' => 'Imperial Plate Bracers<br>Binds when equipped<br>Wrist Plate<br>225 Armor<br>+9 Strength<br>+8 Stamina<br>Durability 30 / 40<br>Requires Level 49<br> <br><br>Imperial Plate (0/7)<br> <br><br>(2) Set: +100 Armor.<br>(4) Set: Increases attack power by 28.<br>(6) Set: +18 Stamina.',
'Locale' => 'enUS'
),
'Attributes' => array(
'Quality' => array(
'Id' => 3,
'Name' => 'uncommon'
),
'Quantity' => 1,
'BindType' => 'Binds when equipped',
'ArmorType' => 'Plate',
'ArmorSlot' => 'Wrist',
'ArmorClass' => array(
'Line' => '225 Armor',
'Rating' => 225
),
'BaseStats' => array(
'Strength' => '+9 Strength',
'Stamina' => '+8 Stamina'
),
'Durability' => array(
'Line' => 'Durability 30 / 40',
'Current' => 30,
'Max' => 40
),
'Requires' => array(
0 => 'Requires Level 49'
),
'Set' => array(
'ArmorSet' => array(
'Name' => 'Imperial Plate'
),
'InactiveSet' => array(
0 => '(2) Set: +100 Armor.',
1 => '(4) Set: Increases attack power by 28.',
2 => '(6) Set: +18 Stamina.'
)
)
)
);
Just out in the open in a box, followed by something like this:
Imperial Plate Bracers
Binds when equipped
Wrist Plate
225 Armor
+9 Strength
+8 Stamina
Durability 30 / 40
Requires Level 49
Imperial Plate (0/7)
(2) Set: +100 Armor.
(4) Set: Increases attack power by 28.
(6) Set: +18 Stamina.
Also in a box. Either these are objects the application doesn't recognize, or the database has become corrupt in relation to these items.
Thanks.