Quote:
Originally Posted by mad@Max
I get database error:
PHP Code:
Table 'db_vb.vb_helpfulanswer' doesn't exist
Few questions.
This is don't work with ajax?
Why you don't use phrase in postbit? 
|
Lots of questions!
1. Please check to see if you have the table helpfulanswer or anything related to it using phpMyAdmin or a similar tool. If not the installer was unable to create it but you can manually with the query:
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`)
);
Be sure to add any prefix to the table.
2. This addon now offes ajax. Fun stuff!
3. As far as using phrases for the template look for an upgrade soon to handle that.