XF 2.3 Stop flagging registrations with shared IP address

stromb0li

Well-known member
I recently flagged a user as spam (which it was), however there are legitimate users that are also coming from a known shared IP address. This is now sending every user account to pending approval on registration, since one account was flagged spam.

How do I configure xenforo to ignore registrations from a particular IP address, but continue to monitor for known spam email addresses, etc.
 
You can remove the shared IP from your database using this query in phpmyadmin

change 110.110.110.100 to another IP to remove.
Code:
DELETE FROM xf_ip WHERE ip = UNHEX(LPAD(HEX(INET_ATON('110.110.110.110')), 8, '0'));
 
Back
Top Bottom