Preventing blog comment spam
New! Get free comment spam protection with FormSmarts. Plus, an easy form builder, a form handler, form hosting and more. All free.
We present here a way to help preventing automated comment spam in in blogs. It works by encoding the comment posting URL of your blogging software. This is a more sophisticated setup of
this blog comment spam prevention tactic.
- After changing the URL of your blog's comment executable, encode the new URL here. For this, enter your URL where indicted "Step 1: enter your e-mail address". Copy the code given to you and extract the strings string1 and string2, which look respectively like FPZEVPKWZXDS2M and %27%23%3E%237%23/1%3C7+1S%3F.
- Place the following code after the <head> tag of the page, after replacing string1 and string2 by their actual values:
<script type='text/javascript'><!--
function blurl(){var v2="string1";var v7=unescape("string2");
var v5=v2.length;var v1="";for(var v4=0;v4<v5;v4++)
{v1+=String.fromCharCode(v2.charCodeAt(v4)^v7.charCodeAt(v4));}
return v1}
//--></script>
- Locate the comment form in the template of your blog, and remove the action attribute specifying the URL of the executable used to process the form results.
- Finally, add this.action=blurl(); to the onsubmit handler of the form:
<form method="post"
onsubmit="this.action=blurl()">
...</form>
Recent Anti-Spam Help Updates