The3rdNipple,
It looks like the table used to store records was not able to be created by the installer.
You will need to create this table manually by running the following query from phpMyAdmin or a similar database program.
Code:
CREATE TABLE `helpfulanswer` (
`helpfulanswerid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`postid` int(10) unsigned NOT NULL DEFAULT '0',
`userid` int(10) unsigned NOT NULL DEFAULT '0',
`yesno` int(10) unsigned NOT NULL DEFAULT '0',
`dateline` INT UNSIGNED NOT NULL DEFAULT '0',
KEY `helpfulanswerid` (`helpfulanswerid`),
KEY `postid` (`postid`),
KEY `userid` (`userid`)
);
I suggest you disable the addon until this is done, if you have not done so already.