I have been, or can be if you click on a link and make a purchase, compensated via a cash payment, gift, or something else of value for writing this post. Regardless, I only recommend products or services I use personally and believe will be good for my readers.
@missyward We have been banning IP’s at the server level due to spam. Seems to help a lot ask @loxly
First of all, if you don’t have Akismet installed, you’re just asking for trouble. I up the challenge a bit by requiring a captcha to be answered with the reCAPTCHA plugin. Even so, some spam still gets submitted and most of the time flagged as spam by Akismet. To ban repeat offenders by IP, do the following:
First, find those who repeatedly spam you. Run this SQL query:
SELECT count( * ) AS nCnt, comment_author_IP FROM wp_comments WHERE comment_approved = 'spam' GROUP BY comment_author_IP ORDER BY nCnt DESC
What you’ll get back is a table of those who spam you, ordered by how many times they spammed you:
Now you can see who spams you the most, and decide if you want to block those IPs. Let’s say I want to ban 178.32.81.224. I download my .htaccess file, and open it in a plain text editor. Then, at the very top, add:
order allow,deny deny from 178.32.81.224 allow from all
Now if the user from 178.32.81.224 comes back, they’ll get a 403/Forbidden response, banned from my site forever.
Sure, they can get another IP, but since they spammed me 6 times from this same IP, I’m sure numbers 7, 8, and 9 are right around the corner. But, not anymore.
What else do you do to stop spammers from commenting on your blog? Oh, and no spam comments, please 🙂
Comments
Dino Vedo
Thanks for the tip but I would think most spammers rotate their IP’s now a days… I know I do 😉
Vinny O'Hare
I feel honored to be mentioned in your post! Glad to be a blog post topic 🙂
We were having problems on one of my sites and one of Debbies forums and cutting off the IP at the server level cut down spam by a ton. I want to say 90% of the bad guys were stopped, that number may be a little high but it sure did work.
Tricia
I like this post because it is a most helpful way to learn about the subject that you are writing about. Thank you for your writing on a most important subject.
Oh, wait. You said do NOT spam your comments. Did I just get myself IP blocked?
Matt Pardo
Very cool, Eric. I didn’t know about that table. I currently use Akismet as well, but I still get a ton of spam. I am not sure if it is the host I am on or what. Anyway, I took this one step further by writing a little script to automatically update .htaccess. It is here if you are interested: http://www.affiliatepathfinder.com/blocking-comment-spam-leveraging-eric-nagels-post/