| Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 68,056
|
Johnny your usergroups table does not exist. Check in mysql to see if this is the case if it does not exist you will need to create it like so
CREATE TABLE `rp_usergroups` (
`groupid` int(5) NOT NULL auto_increment,
`groupname` varchar(50) NOT NULL default '',
`cpaccess` smallint(3) NOT NULL default '0',
`uploads` smallint(3) NOT NULL default '1',
`reviews` smallint(3) NOT NULL default '1',
`uploadsize` int(10) default NULL,
`editpho` int(3) NOT NULL default '1',
`editposts` int(3) NOT NULL default '1',
`modaccess` smallint(3) NOT NULL default '0',
`reqmod` int(3) NOT NULL default '0',
`uplimit` int(3) NOT NULL default '0',
PRIMARY KEY (`groupid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=55 ;
--
-- Dumping data for table `rp_usergroups`
--
INSERT INTO `rp_usergroups` VALUES (6, 'Administrators', 1, 1, 1, NULL, 1, 1, 1, 0, 0);
INSERT INTO `rp_usergroups` VALUES (1, 'Unregistered / Not Logged', 0, 0, 0, NULL, 0, 0, 0, 0, 0);
INSERT INTO `rp_usergroups` VALUES (2, 'Registered Users', 0, 0, 1, NULL, 0, 1, 0, 0, 0);
INSERT INTO `rp_usergroups` VALUES (3, 'Users Awaiting Email Conf', 0, 0, 0, NULL, 0, 0, 0, 0, 0);
INSERT INTO `rp_usergroups` VALUES (4, '(COPPA) Users Awaiting Mo', 0, 0, 0, NULL, 0, 0, 0, 0, 0);
INSERT INTO `rp_usergroups` VALUES (5, 'Super Moderators', 0, 1, 1, NULL, 1, 1, 1, 0, 0);
INSERT INTO `rp_usergroups` VALUES (7, 'Moderators', 0, 1, 1, NULL, 1, 1, 1, 0, 0);
INSERT INTO `rp_usergroups` VALUES (8, 'Banned', 0, 0, 0, NULL, 0, 0, 0, 0, 0);
|