<?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"
	>
<channel>
	<title>Comments on: New Spambam plugin</title>
	<atom:link href="http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/</link>
	<description>A tool for designers dealing with programmers dealing with designers...</description>
	<pubDate>Fri, 16 May 2008 07:59:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Gareth Heyes</title>
		<link>http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-1145</link>
		<dc:creator>Gareth Heyes</dc:creator>
		<pubDate>Mon, 18 Feb 2008 10:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-1145</guid>
		<description>@Chelsea

Sorry about that, I know of this bug and I'm working on the new version. Would you mind beta testing it for me? If so I'll post the latest version here</description>
		<content:encoded><![CDATA[<p>@Chelsea</p>
<p>Sorry about that, I know of this bug and I&#8217;m working on the new version. Would you mind beta testing it for me? If so I&#8217;ll post the latest version here</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chelsea</title>
		<link>http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-1143</link>
		<dc:creator>Chelsea</dc:creator>
		<pubDate>Mon, 18 Feb 2008 10:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-1143</guid>
		<description>"We don't allow comment spam here. Javascript is required to submit a comment." 

I've been experiencing the same problem. Many people complained of not being able to comment on my blog recently (even if they've been able to in the past).</description>
		<content:encoded><![CDATA[<p>&#8220;We don&#8217;t allow comment spam here. Javascript is required to submit a comment.&#8221; </p>
<p>I&#8217;ve been experiencing the same problem. Many people complained of not being able to comment on my blog recently (even if they&#8217;ve been able to in the past).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gareth Heyes</title>
		<link>http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-1123</link>
		<dc:creator>Gareth Heyes</dc:creator>
		<pubDate>Wed, 06 Feb 2008 23:02:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-1123</guid>
		<description>@Clyde 

Hi, a new version is in development and should be released next week. It contains many improvements and should fix these bugs.</description>
		<content:encoded><![CDATA[<p>@Clyde </p>
<p>Hi, a new version is in development and should be released next week. It contains many improvements and should fix these bugs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clyde Gill</title>
		<link>http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-1122</link>
		<dc:creator>Clyde Gill</dc:creator>
		<pubDate>Wed, 06 Feb 2008 22:57:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-1122</guid>
		<description>I found this thread searching for this error string, "We don't allow comment spam here. Javascript is required to submit a comment."  which is occuring sporadically when comments are submitted.  Seems odd that it does not happen all of the time.  I have  5 separate wordpress blogs running on one online server and one offline server, all using spam bam, and this is only occuring on one of the online server blogs.  This error has happened to one of my contributors a few times and just now happened to me.  All pc's involved have java running.

I wanted to check to see if you thought the code in the 4th comment above would work!?  My error code does not include all the other 'Warnings' that Gary posted.

I've used spam bam on my other blogs for quite some time now with great effect!</description>
		<content:encoded><![CDATA[<p>I found this thread searching for this error string, &#8220;We don&#8217;t allow comment spam here. Javascript is required to submit a comment.&#8221;  which is occuring sporadically when comments are submitted.  Seems odd that it does not happen all of the time.  I have  5 separate wordpress blogs running on one online server and one offline server, all using spam bam, and this is only occuring on one of the online server blogs.  This error has happened to one of my contributors a few times and just now happened to me.  All pc&#8217;s involved have java running.</p>
<p>I wanted to check to see if you thought the code in the 4th comment above would work!?  My error code does not include all the other &#8216;Warnings&#8217; that Gary posted.</p>
<p>I&#8217;ve used spam bam on my other blogs for quite some time now with great effect!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gareth Heyes</title>
		<link>http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-633</link>
		<dc:creator>Gareth Heyes</dc:creator>
		<pubDate>Sat, 29 Sep 2007 09:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-633</guid>
		<description>Hi Gary

It appears that your server doesn't support sessions or uses a old method of sessions. You could try a run a find and replace the following lines:-

FIND:
1. $_SESSION['spambam_result'] = '';
2. return join("",$_SESSION['spambam_result']); 
3. $_SESSION['spambam_result'] = $randomJS-&#62;result;

REPLACE:
1.    global $HTTP_SESSION_VARS;
       $HTTP_SESSION_VARS['spambam_result'] = '';
2. global $HTTP_SESSION_VARS;	
     return join("",$HTTP_SESSION_VARS['spambam_result']); 

3. global $HTTP_SESSION_VARS;
$HTTP_SESSION_VARS['spambam_result'] = $randomJS-&#62;result;</description>
		<content:encoded><![CDATA[<p>Hi Gary</p>
<p>It appears that your server doesn&#8217;t support sessions or uses a old method of sessions. You could try a run a find and replace the following lines:-</p>
<p>FIND:<br />
1. $_SESSION['spambam_result'] = &#8221;;<br />
2. return join(&#8221;",$_SESSION['spambam_result']);<br />
3. $_SESSION['spambam_result'] = $randomJS-&gt;result;</p>
<p>REPLACE:<br />
1.    global $HTTP_SESSION_VARS;<br />
       $HTTP_SESSION_VARS['spambam_result'] = &#8221;;<br />
2. global $HTTP_SESSION_VARS;<br />
     return join(&#8221;",$HTTP_SESSION_VARS['spambam_result']); </p>
<p>3. global $HTTP_SESSION_VARS;<br />
$HTTP_SESSION_VARS['spambam_result'] = $randomJS-&gt;result;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary Harvey</title>
		<link>http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-632</link>
		<dc:creator>Gary Harvey</dc:creator>
		<pubDate>Sat, 29 Sep 2007 07:22:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-632</guid>
		<description>Hi Gareth.

I uploaded the plugin folder and activated it but get this error msg. 

Warning: join() [function.join]: Bad arguments. in /home/xxxxxx/public_html/blog/wp-content/plugins/spambam/spambam.php on line 43

Warning: join() [function.join]: Bad arguments. in /home/xxxxxx/public_html/blog/wp-content/plugins/spambam/spambam.php on line 43
We don't allow comment spam here. Javascript is required to submit a comment.

Ideas?

Gary</description>
		<content:encoded><![CDATA[<p>Hi Gareth.</p>
<p>I uploaded the plugin folder and activated it but get this error msg. </p>
<p>Warning: join() [function.join]: Bad arguments. in /home/xxxxxx/public_html/blog/wp-content/plugins/spambam/spambam.php on line 43</p>
<p>Warning: join() [function.join]: Bad arguments. in /home/xxxxxx/public_html/blog/wp-content/plugins/spambam/spambam.php on line 43<br />
We don&#8217;t allow comment spam here. Javascript is required to submit a comment.</p>
<p>Ideas?</p>
<p>Gary</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gareth Heyes</title>
		<link>http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-629</link>
		<dc:creator>Gareth Heyes</dc:creator>
		<pubDate>Thu, 27 Sep 2007 17:05:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-629</guid>
		<description>Hi Nick

Yes good idea I shall add that feature into the next release.</description>
		<content:encoded><![CDATA[<p>Hi Nick</p>
<p>Yes good idea I shall add that feature into the next release.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-625</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 27 Sep 2007 15:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.thespanner.co.uk/2007/09/07/new-spambam-plugin/#comment-625</guid>
		<description>Hi there,
I'd like to suggest a feature, if you check my site you'll see in the footer I like to show how much spam plugins block.

If you insert
&#60;code&#62;
$counter = get_option('spambam_spam_count');
	$counter = $counter + 1;
	update_option( 'spambam_spam_count', $counter );
&#60;/code&#62;
after 
&#60;code&#62;sleep(SPAMBAM_SPAMMER_DELAY);&#60;/code&#62;

we can have "Spambam has blocked x spams since installed" within our themes... it's a cool way of show how effective each plugin is :)</description>
		<content:encoded><![CDATA[<p>Hi there,<br />
I&#8217;d like to suggest a feature, if you check my site you&#8217;ll see in the footer I like to show how much spam plugins block.</p>
<p>If you insert<br />
&lt;code&gt;<br />
$counter = get_option(&#8217;spambam_spam_count&#8217;);<br />
	$counter = $counter + 1;<br />
	update_option( &#8217;spambam_spam_count&#8217;, $counter );<br />
&lt;/code&gt;<br />
after<br />
&lt;code&gt;sleep(SPAMBAM_SPAMMER_DELAY);&lt;/code&gt;</p>
<p>we can have &#8220;Spambam has blocked x spams since installed&#8221; within our themes&#8230; it&#8217;s a cool way of show how effective each plugin is <img src='http://www.thespanner.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
