|
You would need to clear the usergroups table of Photopost first before you can import id's with the same id
phpbb has 3 groups we need by default
INSERT INTO pp_usergroups VALUES ('1','Anonymous','','','','','',0,0,0,0,0,0,0);
INSERT INTO pp_usergroups VALUES ('2','Admin',1,1,1,'','',1,1,1,1,0,0,0);
INSERT INTO pp_usergroups VALUES ('3','Regular Users','',1,1,'','',1,1,0,1,0,0,0);
|