Hello,
I'm not sure if there is a way to do this through the dashboard but you should be able to find the users with a MySQL query. I'm not sure if this is the most efficient query, but it should work:
SELECT uID, uName, uEmail FROM Users u LEFT JOIN UserGroups ug ON u.uID = ug.uID WHERE gID IS NULL;
Code
Post Reply
Delete Post
You are allowed to delete your post for 5 minutes after it's posted.
I'm not sure if there is a way to do this through the dashboard but you should be able to find the users with a MySQL query. I'm not sure if this is the most efficient query, but it should work: