|
Check the entries in you databse for ranks i found mine were missing.
Below is what needs to in there somewhere.
CREATE TABLE `#__fb_ranks` (
`rank_id` mediumint(8) unsigned NOT NULL auto_increment,
`rank_title` varchar(255) NOT NULL default '',
`rank_min` mediumint(8) unsigned NOT NULL default '0',
`rank_special` tinyint(1) unsigned NOT NULL default '0',
`rank_image` varchar(255) NOT NULL default '',
PRIMARY KEY (`rank_id`)
);
Also for the pre-defined ranks you will need to add the entries below.
INSERT INTO `#__fb_ranks` (`rank_id`, `rank_title`, `rank_min`, `rank_special`, `rank_image`) VALUES
(1, 0x467265736820426f6172646572, 0, 0, 0x72616e6b312e676966),
(2, 0x4a756e696f7220426f6172646572, 20, 0, 0x72616e6b322e676966),
(3, 0x53656e696f7220426f6172646572, 40, 0, 0x72616e6b332e676966),
(4, 0x45787065727420426f6172646572, 80, 0, 0x72616e6b342e676966),
(5, 0x476f6c6420426f6172646572, 160, 0, 0x72616e6b352e676966),
(6, 0x506c6174696e756d20426f6172646572, 320, 0, 0x72616e6b362e676966),
(7, 0x41646d696e6973747261746f72, 0, 1, 0x72616e6b61646d696e2e676966),
(8, 0x4d6f64657261746f72, 0, 1, 0x72616e6b6d6f642e676966),
(9, 0x5370616d6d6572, 0, 1, 0x72616e6b7370616d6d65722e676966);
|