To make this work:
1. Install EQDKP 1.3.0
2. Upload ALL the files in the attached zip archive
3. Edit the {EQDKP_ROOT}/itemstats/config.php file and set the correct MySQL values
4. Create the proper MySQL database:
CODE
CREATE TABLE IF NOT EXISTS `item_cache` (
`item_name` varchar(100) NOT NULL default '',
`item_link` varchar(100) default NULL,
`item_color` varchar(20) NOT NULL default '',
`item_icon` varchar(50) NOT NULL default '',
`item_html` text NOT NULL,
UNIQUE KEY `name` (`item_name`),
FULLTEXT KEY `data` (`item_html`)
)