MyBB Community Forums

Full Version: Delete Users from same IP
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Guys, I'm looking for a plugin that can detect multiple registration from the same IP Address and give me the option to delete all those users with a single click.
You could always run a query in PHPMYADMIN if you have specific IP, likeL

DELETE FROM `mybb_users` WHERE lastip=127.0.0.0

So it'd delete all the users whose last IP was 127.0.0.0 (change this to the IP you found).

Note: Above query is not tested, if you do test, its advice to take a backup first
That took care of the problem.