Sorry if this seems like a basic question, but when a blog as small as mine has a problem with comment spam, it's getting bad. I'm sure people have some great solutions in place, and I'm hoping we can all brainstorm here.
For example, a lot of people use some type of capcha. Others use a hidden form to trick spambots. How effective are these, and how much do they put your visitors off? My gut feeling is this doesn't make sense, but I haven't given it a try.
How much comment spam is directly human-generated, and how much by bots? Does anybody know, of the bot spam, how much is run from a server versus on someone's home machine? Comcast gives me a 72-hour lease on an IP address ... if I did something naughty and you banned my address, you could be missing out on traffic from other Comcast users down the line - which doesn't help them or you. Is there a way to tell whether an address is static or dynamic?
I don't know WordPress that well; can I blacklist certain keywords in urls that show up in the comments? Any other ideas?
Banning one particular address, or a list of them, is pretty straightforward if you can get at your .htaccess file:
Code:
RewriteEngine On
RewriteBase /
RewriteRule .* - [F,L]
<Files 403.shtml>
order allow,deny
allow from all
</Files>
deny from 64.131.64.202
But with four posts so far, I have a feeling it's going to be a looooong list. Keywords seems like it might be less to manage down the line? Unless, hopefully, someone has a better suggestion?