You just need to create the table.. if you have never run EQDKP before then it might be a little hard knowing what that table is, but in phpMyAdmin, do an SQL dump using the following code:
Code:
CREATE TABLE `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 `item_name` (`item_name`),
FULLTEXT KEY `item_html` (`item_html`)
) TYPE=MyISAM;
That should get it working anyway ..