Dear supa, seems like your sql server is not mysql 4 or higher...try editing the feedpost.xml file inside the zip package and replace that query with this one:
| Code: |
CREATE TABLE `#__feedpost_config` (
`id` int(11) NOT NULL auto_increment,
`useiconv` tinyint(4) NOT NULL default '1',
`getwith` tinyint(4) NOT NULL default '0',
`insertadvert` tinyint(4) NOT NULL default '1',
`includelink` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`id`)
) TYPE=MyISAM COMMENT='Feed2post options' AUTO_INCREMENT=1 ;
|
The old query will have #_ as the prefix too, you should look for:
| Code: |
<query> CREATE TABLE `#__feedpost_config` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`useiconv` TINYINT NOT NULL DEFAULT '1',
`getwith` TINYINT NOT NULL DEFAULT '0',
`insertadvert` TINYINT NOT NULL DEFAULT '1',
`includelink` TINYINT NOT NULL DEFAULT '0'
) ENGINE = MYISAM COMMENT = 'Feed2post options';
</query>
|
and replace that lines with the ones I gave you before, let's see if that works, if not, I'm afraid that feed2post needs mysql...won't work if you have any other sql server...
Best regards,
Mario