Ok found the issue in sql query. The primary key is not defined in sql query along with auto_increment.
I modified the sql query in myphp admin and it is everything under control
Anybody having thhis issue may try this. I take no responsibility if this does screw up your installation so the golder words when dealing with mysql. Make a backup.
Here is what I did. The bold is where I made the changes
CREATE TABLE `jos_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,
`image` varchar(255) NOT NULL default ''
,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
May be admin can look into this.
Thanks
Post edited by: joomlafreak, at: 2007/04/19 04:17