<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: WordPress Spam Blocker</title>
	<atom:link href="http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/feed/" rel="self" type="application/rss+xml" />
	<link>http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/</link>
	<description>Web design, search engine optimization and Internet marketing</description>
	<lastBuildDate>Mon, 23 Jan 2012 20:52:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: DianeV</title>
		<link>http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1378</link>
		<dc:creator>DianeV</dc:creator>
		<pubDate>Wed, 26 Jul 2006 09:47:31 +0000</pubDate>
		<guid isPermaLink="false">http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1378</guid>
		<description>Having thought about it, the only problem I see with combining the spamwords for all the fields is that it *could* make posting certain things difficult.

I&#039;ve had a bit of trouble with that, where I couldn&#039;t use a non-spam word that I would normally use. Had to edit the thing. &lt;grin&gt;

And so, I look forward to (whenever we finish) the coding for the external files for the spamblocker.</description>
		<content:encoded><![CDATA[<p>Having thought about it, the only problem I see with combining the spamwords for all the fields is that it *could* make posting certain things difficult.</p>
<p>I've had a bit of trouble with that, where I couldn't use a non-spam word that I would normally use. Had to edit the thing. &lt;grin&gt;</p>
<p>And so, I look forward to (whenever we finish) the coding for the external files for the spamblocker.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diane Vigil</title>
		<link>http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1355</link>
		<dc:creator>Diane Vigil</dc:creator>
		<pubDate>Tue, 18 Jul 2006 10:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1355</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Goodwin</title>
		<link>http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1354</link>
		<dc:creator>Goodwin</dc:creator>
		<pubDate>Tue, 18 Jul 2006 10:41:15 +0000</pubDate>
		<guid isPermaLink="false">http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1354</guid>
		<description>You cat rewrite it to look like this:
&lt;pre&gt;
$spamwords = array(
	&#039;word1&#039;,
	&#039;word2&#039;,
	&#039;word3&#039;,
);
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>You cat rewrite it to look like this:</p>
<pre>
$spamwords = array(
	'word1',
	'word2',
	'word3',
);
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diane Vigil</title>
		<link>http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1349</link>
		<dc:creator>Diane Vigil</dc:creator>
		<pubDate>Tue, 18 Jul 2006 10:34:52 +0000</pubDate>
		<guid isPermaLink="false">http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1349</guid>
		<description>Interesting. If the first line could be one per line, that would make a much tidier file.</description>
		<content:encoded><![CDATA[<p>Interesting. If the first line could be one per line, that would make a much tidier file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Goodwin</title>
		<link>http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1347</link>
		<dc:creator>Goodwin</dc:creator>
		<pubDate>Tue, 18 Jul 2006 10:16:25 +0000</pubDate>
		<guid isPermaLink="false">http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1347</guid>
		<description>Nice idea!
I think the code could be optimized a little:

&lt;p class=&quot;codeblack&quot;&gt;
$spamwords = array(&#039;word1&#039;,&#039;word2&#039;,&#039;word3&#039;); // spam words to search for
$postfields = array(&#039;author&#039;, &#039;email&#039;, &#039;url&#039;, &#039;comment&#039;); // $_POST fields to check
foreach($postfields as $postfield) 
	foreach($spamwords as $spamword) 
		if(eregi($spamword, $_POST[$postfield]) !== false) 
			die(&quot;Denied&quot;);
&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Nice idea!<br />
I think the code could be optimized a little:</p>
<p class="codeblack">
$spamwords = array('word1&#8242;,'word2&#8242;,'word3&#8242;); // spam words to search for<br />
$postfields = array('author', 'email', 'url', 'comment'); // $_POST fields to check<br />
foreach($postfields as $postfield)<br />
	foreach($spamwords as $spamword)<br />
		if(eregi($spamword, $_POST[$postfield]) !== false)<br />
			die("Denied");</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DianeV</title>
		<link>http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1293</link>
		<dc:creator>DianeV</dc:creator>
		<pubDate>Thu, 22 Jun 2006 12:33:48 +0000</pubDate>
		<guid isPermaLink="false">http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1293</guid>
		<description>Excellent --- that&#039;s another way to go.

Although, now that I think of it, I believe normal spam blockers flag spam, but it still lands in the WordPress moderation queue. The above script doesn&#039;t do that --- it blocks spam comments from being posted at all. Pure bliss. :)</description>
		<content:encoded><![CDATA[<p>Excellent &#8212; that's another way to go.</p>
<p>Although, now that I think of it, I believe normal spam blockers flag spam, but it still lands in the WordPress moderation queue. The above script doesn't do that &#8212; it blocks spam comments from being posted at all. Pure bliss. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harry Maugans</title>
		<link>http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1267</link>
		<dc:creator>Harry Maugans</dc:creator>
		<pubDate>Sun, 11 Jun 2006 17:35:29 +0000</pubDate>
		<guid isPermaLink="false">http://developedtraffic.com/2006/06/07/wordpress-spam-blocker/#comment-1267</guid>
		<description>Ah, very nice.  About a month ago I got tired of cleaning up the comments on my own blog, so I went out looking for an anti-spam script.  I ended up deciding on &quot;dr Dave&#039;s Spam Karma 2&quot;, which has worked out great.  It has thresholds and uses a semi-intelligent algorithm in deciding if it&#039;s spam or not.  For example, if someone clicks on a post of mine, and a few seconds later posts a comment (ie, no time to read it), it flags as spam.  :)</description>
		<content:encoded><![CDATA[<p>Ah, very nice.  About a month ago I got tired of cleaning up the comments on my own blog, so I went out looking for an anti-spam script.  I ended up deciding on "dr Dave's Spam Karma 2&#8243;, which has worked out great.  It has thresholds and uses a semi-intelligent algorithm in deciding if it's spam or not.  For example, if someone clicks on a post of mine, and a few seconds later posts a comment (ie, no time to read it), it flags as spam.  :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

