Semere you choose internal registration correct. If you view your Photopost usergroups table in a mysql database viewer like phpmyadmin what is there?
For an internal install you should have entries like this
INSERT INTO usergroups VALUES (5,'Administrator',1,1,1,1,'','',1,1,1,0,0);
INSERT INTO usergroups VALUES (1,'Banned','','','','','','',0,0,0,0,0);
INSERT INTO usergroups VALUES (3,'Unregistered','','','','','','',0,0,0,0,0);
INSERT INTO usergroups VALUES (4,'Registered','','',1,1,'','',1,1,1,0,0);
INSERT INTO usergroups VALUES (2,'COPPA','','','','','','',0,0,0,0,0);
Note admin is usergroup 5
Let me know the answer and we can go from there.
Frisser
The problem with 4.8.5
VB usergroups is the CREATE usergroup is a bit whacked.
Try doing this
DROP that usergroups table and run this in phpmyadmin replacing what prefix you have on there.
CREATE TABLE 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', comments smallint(3) NOT NULL default '1', diskspace int(10) default NULL, 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',useralbums int(3) NOT NULL default '0',reqmod INT(3) DEFAULT '0' NOT NULL, canassign INT(3) DEFAULT '0' NOT NULL, PRIMARY KEY (groupid)) TYPE=MyISAM;
THEN add this insert
INSERT INTO usergroups VALUES (6,'Administrator',1,1,1,1,'','',1,1,1,0,0);
You should be able to login and refresh the usergroups to add the rest