MyBB Community Forums

Full Version: repeating default user group
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi

please see below pic
[Image: 1266574005.png]

any of default user group repeat two time in control panel.now beacuse they are default , i cant delete tem from control panel. how can i delete extra one?.(i read in forum i can delete from php myadmin if i delete that way .will i have problem with mybb in future ?)
Is this a fresh install or a merge?? Run these queries:

DELETE FROM `mybb_usergroups` WHERE `gid` > '7';
ALTER TABLE `mybb_usergroups` AUTO_INCREMENT = 8;
no its fresh install , whether deleting this tables effect on working of mybb? and can i manualy delete this from mybb_usergroups in phpmyadmin
You're not deleting tables, you're deleting rows. No, it won't break anything, as the second copy of each group isn't being used. You can manually delete them if you really want to but running the queries will be much quicker and will make sure you don't delete the wrong ones.