Quote:
Originally Posted by Muazam
Hello, I've made a lot of groups. And then I deleted them most of them.
I have like 9 groups left.
the counter is messed now, when I make a group it starts on 41. It should start on 10.
Anyone know how to make it start from 10? I have basic understanding in MYSQL.
But I don't know how to setup the AI.
Anyone knows how?
Thanks
|
Try to run this query at the phpmyadmin in the cp of your host:
Code:
UPDATE `usergroup` SET usergroupid = 10 WHERE title = 'Banned Users';
If your db tables have a prefix, don''t forget to include it in your query as well. And replace Banned Users with the name of your custom group that you want to have the uid 10.