Dann überprüfe nochmal die anderen 3 Dateien, die zu bearbeiten sind.
Insbesondere die
includes/bbcode.php
Ebenso die SQL-Anweisung am Ende der Anleitung bzw. die manuellen Vorgäge (DIY).
Code: Alles auswählen
Add the following BBCode in your admin panel:
Usage:
[Item]{TEXT}[/Item]
HTML Replacement:
{TEXT}
Help Line:
Aion-Armory Item: [item]id or name[/item], [item=text]id or name[/item], [item=icon]id or name], [item=size]id or name[/item] (Valid sizes are small, medium and large).
Display on posting page:
YES
----------------------------------------------------------------------------
Usage:
[Spell]{TEXT}[/Spell]
HTML Replacement:
{TEXT}
Help Line:
Aion-Armory Spell: [spell]id or name[/spell], [spell=text]id or name[/spell], [spell=icon]id or name[/spell], [spell=size]id or name[/spell] (Valid sizes are small, medium and large).
Display on posting page:
YES
----------------------------------------------------------------------------
Usage:
[Recipe]{TEXT}[/Recipe]
HTML Replacement:
{TEXT}
Help Line:
Aion-Armory Recipe: [recipe]id or name[/recipe], [recipe=text]id or name[/recipe], [recipe=icon]id or name[/recipe], [recipe=size]id or name[/recipe] (Valid sizes are small, medium and large).
Display on posting page:
YES
----------------------------------------------------------------------------
Add the following SQL code to your database:
DROP TABLE IF EXISTS `aionarmory_itemcache`;
CREATE TABLE `aionarmory_itemcache` (
`id` int(32) NOT NULL,
`name` varchar(255) NOT NULL,
`icon` int(32) NOT NULL,
`rarity` int(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
DROP TABLE IF EXISTS `aionarmory_spellcache`;
CREATE TABLE `aionarmory_spellcache` (
`id` int(32) NOT NULL,
`name` varchar(255) NOT NULL,
`icon` int(32) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
DROP TABLE IF EXISTS `aionarmory_recipecache`;
CREATE TABLE `aionarmory_recipecache` (
`id` int(32) NOT NULL,
`name` varchar(255) NOT NULL,
`icon` int(32) NOT NULL,
`rarity` int(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;