B Blitzz Active member Nov 12, 2016 #1 How would I go about pulling up all the accounts with no registered emails under the account. I've created a lot of test accounts for testing. Too many to count and would like to remove all of them.
How would I go about pulling up all the accounts with no registered emails under the account. I've created a lot of test accounts for testing. Too many to count and would like to remove all of them.
P Paul B XenForo moderator Staff member Nov 12, 2016 #2 Using phpMyadmin to identify the accounts would likely be the easiest way - then delete them via the UI in the ACP. Upvote 0 Downvote
Using phpMyadmin to identify the accounts would likely be the easiest way - then delete them via the UI in the ACP.
Mouth Well-known member Nov 12, 2016 #3 Brogan said: Using phpMyadmin Click to expand... Code: select username from xf_user where email = '' or email is null or email not like '%@%'; Upvote 0 Downvote
Brogan said: Using phpMyadmin Click to expand... Code: select username from xf_user where email = '' or email is null or email not like '%@%';