|
Check your Table structure for table `#__fb_categories`
You find that in install packages Docs/FB_databaseStructure -file.
Please backup before.
That say this for me:
CREATE TABLE IF NOT EXISTS `#__fb_categories` (
`id` int(11) NOT NULL auto_increment,
`parent` int(11) default '0',
`name` tinytext,
`cat_emoticon` tinyint(4) NOT NULL default '0',
`locked` tinyint(4) NOT NULL default '0',
`alert_admin` tinyint(4) NOT NULL default '0',
`moderated` tinyint(4) NOT NULL default '0',
`moderators` varchar(15) default NULL,
`pub_access` tinyint(4) default '1',
`pub_recurse` tinyint(4) default '1',
`admin_access` tinyint(4) default '0',
`admin_recurse` tinyint(4) default '1',
`ordering` tinyint(4) NOT NULL default '0',
`future2` int(11) default '0',
`published` tinyint(4) NOT NULL default '0',
`checked_out` tinyint(4) NOT NULL default '0',
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
`review` tinyint(4) NOT NULL default '0',
`hits` int(11) NOT NULL default '0',
`description` text NOT NULL,
`headerdesc` text NOT NULL,
`class_sfx` varchar(20) NOT NULL,
`id_last_msg` int(10) NOT NULL default '0',
`numTopics` mediumint(8) NOT NULL default '0',
`numPosts` mediumint(8) NOT NULL default '0',
`time_last_msg` int(11) default NULL,
PRIMARY KEY (`id`),
KEY `parent` (`parent`),
KEY `published_pubaccess_id` (`published`,`pub_access`,`id`),
KEY `msg_id` (`id_last_msg`)
);
|