Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Are there any IP blacklist extensions out there?
I'm getting a crapload of new user accounts with Spammy names coming from 84.19.*.* addresses. Is there an extension to block certain IP ranges from creating new accounts?
0
This discussion has been closed.
Comments
order deny,allow deny from 84.19 allow from all
someone correct me if im wrong.. i dont know much about the subject but i am pretty certain it would work.
Order allow,deny deny from 84.19. allow from all
I think Bergamot is looking for something easy to change via an extension, but while someone is making the extension that a good solution.
Or better If you can change your httpd.conf and restart apache:
<Location "/people.php"> Order allow,deny deny from 84.19. allow from all </Location>
Maybe I'll take a crack at it sometime.