<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress Plugin Browser Topic: Clickcha</title>
<link>http://bbpress.org/plugins/</link>
<description>bbPress Plugin Browser Topic: Clickcha</description>
<language>en</language>
<pubDate>Fri, 19 Mar 2010 04:22:44 +0000</pubDate>

<item>
<title>suffern on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-4867</link>
<pubDate>Thu, 05 Nov 2009 03:16:07 +0000</pubDate>
<dc:creator>suffern</dc:creator>
<guid isPermaLink="false">4867@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;I only want this to work on the registration form. How can I edit the code so it doesn't show up when posting new topics?&#60;/p&#62;
&#60;p&#62;Or could we get an update where this is an option in the admin section?&#60;/p&#62;
&#60;p&#62;Great work by the way. Appreciate your effort.
&#60;/p&#62;</description>
</item>
<item>
<title>zennie on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-4861</link>
<pubDate>Tue, 03 Nov 2009 18:11:04 +0000</pubDate>
<dc:creator>zennie</dc:creator>
<guid isPermaLink="false">4861@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;The idea is awesome, I like that it's very fast and it doesn't torture the user with indecipherable words, but I think it's not very difficult to make a bot that can crack it, especially if there are not may different types of puzzles.&#60;/p&#62;
&#60;p&#62;However, as long as it's not well-known and well-spread, it's safe, mostly because no one takes the time to build a bot for it.
&#60;/p&#62;</description>
</item>
<item>
<title>deko on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-4661</link>
<pubDate>Wed, 30 Sep 2009 00:05:11 +0000</pubDate>
<dc:creator>deko</dc:creator>
<guid isPermaLink="false">4661@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;I discovered Clickcha yesterday. Seems to be working well so far. Would be nice if there was a developer forum or programmer's reference. This has a lot of potential as a comment spam prevention tool.&#60;/p&#62;
&#60;p&#62;The problem I had with Clickcha was that it broke my CSS and caused the page to fail HTML validation. Here's how I fixed it:&#60;/p&#62;
&#60;p&#62;1) Go to your wp-content/plugins directory and edit clickcha.php (about line 155) Remove all style directives--that is, everything between (and including) the &#60;code&#62;&#38;lt;style&#38;gt;&#60;/code&#62; tags. Paste it in notepad for now--you'll want it later.&#60;/p&#62;
&#60;p&#62;2) remove the &#60;code&#62;&#38;lt;noscript&#38;gt;&#60;/code&#62; and &#60;code&#62;small&#38;gt;&#60;/code&#62; tags (and anything in between) that appear near the javascript code within the &#60;code&#62;clickcha_comment_form&#60;/code&#62; function. Below is how my &#60;code&#62;clickcha_comment_form&#60;/code&#62; function looks after editing.&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;Note the &#60;code&#62;/* &#38;lt;![CDATA[ */ ... /* ]]&#38;gt; */&#60;/code&#62; addition. This tells HTML validator to ignore the script.&#60;/p&#62;&#60;/blockquote&#62;
&#60;pre&#62;&#60;code&#62;function clickcha_comment_form($post_id) {
	$public_key = get_option(&#38;#39;clickcha-public-key&#38;#39;);
	$help_text = get_option(&#38;#39;clickcha-help-text&#38;#39;);
	if(empty($public_key)) {
		echo &#38;quot;&#38;lt;div id=&#38;#39;message&#38;#39; class=&#38;#39;error fade&#38;#39;&#38;gt;&#38;lt;p&#38;gt;Clickcha is not yet active. Please enter Clickcha API keys in settings.&#38;lt;/p&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;;
	}
	// Bypass clickcha for logged-in user (except &#38;#39;subscriber&#38;#39;)
	else if(!current_user_can(&#38;#39;level_1&#38;#39;)){ ?&#38;gt;

	&#38;lt;input type=&#38;quot;hidden&#38;quot; name=&#38;quot;clickcha_token&#38;quot; id=&#38;quot;clickchatoken&#38;quot; value=&#38;quot;&#38;quot;&#38;gt;&#38;lt;/input&#38;gt;
	&#38;lt;?php echo $help_text; ?&#38;gt;
	&#38;lt;input type=&#38;quot;image&#38;quot; name=&#38;quot;clickcha&#38;quot; id=&#38;quot;clickcha&#38;quot; alt=&#38;quot;&#38;quot; src=&#38;quot;&#38;quot;&#38;gt;&#38;lt;/input&#38;gt;

	&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
	/* &#38;lt;![CDATA[ */
		function clickcha_token(token) {
			document.getElementById(&#38;#39;clickchatoken&#38;#39;).value = token;
			document.getElementById(&#38;#39;clickcha&#38;#39;).src = &#38;#39;http://api.clickcha.com/challenge?key=&#38;lt;?php echo $public_key; ?&#38;gt;&#38;amp;token=&#38;#39; + token;
		}
		function clickcha_get_token() {
			var e = document.createElement(&#38;#39;script&#38;#39;);
			e.src = &#38;#39;http://api.clickcha.com/token?output=json&#38;amp;key=&#38;lt;?php echo $public_key; ?&#38;gt;&#38;amp;rnd=&#38;#39; + Math.random();
			e.type= &#38;#39;text/javascript&#38;#39;;
			document.getElementsByTagName(&#38;#39;head&#38;#39;)[0].appendChild(e);
		}
		clickcha_get_token();
		// Firefox&#38;#39;s bfcache workaround
		window.onpageshow = function(e) {if(e.persisted) clickcha_get_token();};
	/* ]]&#38;gt; */
	&#38;lt;/script&#38;gt;
&#38;lt;?php
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;3) Edit your stylesheet and put in what you took out of clickcha.php:&#60;/p&#62;
&#60;p&#62;here's how it looks in my stylesheet:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#clickcha input {
	height: 100px;
	width: 200px;
	border: 0;
	margin: 0;
	padding: 0;
	display: block;
}

#submit { display: none; }
#commentform input [type=&#38;quot;submit&#38;quot;] { display: none; }
#commentform button [type=&#38;quot;submit&#38;quot;] { display: none; }
#commentform span.submit { display: none; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Clickcha is working, my CSS looks like it should, and the page validates as XHTML 1.0 Transitional.
&#60;/p&#62;</description>
</item>
<item>
<title>loungelizard777 on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-4592</link>
<pubDate>Wed, 23 Sep 2009 12:49:05 +0000</pubDate>
<dc:creator>loungelizard777</dc:creator>
<guid isPermaLink="false">4592@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;I've installed Clickcha but when I try to test-register I get this error message ... Anyone knows what I have to do to get this working? The other two worthy bbPress Antispam plugins were useless, Russian spammers went through them like hot steel through butter. But Clickcha seems to prevent them.&#60;/p&#62;
&#60;p&#62;Here's the error:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in /nfs/c02/h09/mnt/24512/domains/forums.hexagonstar.com/html/my-plugins/clickcha/clickcha.php on line 158

Warning: file_get_contents(http://api.clickcha.com/verify?key=hmx_tP7lT5Q&#38;amp;token=fXCMzDsCwqpUqQ4hlcJXdGKvAeDGUj5A9WYVq2W3qSbIXrwV5YQUKR8BBogSgImelOHFPNo__adGEpRj9SjgdQ&#38;amp;private_key=XQUwSq6dNVA&#38;amp;x=139&#38;amp;y=42) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /nfs/c02/h09/mnt/24512/domains/forums.hexagonstar.com/html/my-plugins/clickcha/clickcha.php on line 158

Warning: Cannot modify header information - headers already sent by (output started at /nfs/c02/h09/mnt/24512/domains/forums.hexagonstar.com/html/my-plugins/clickcha/clickcha.php:158) in /nfs/c02/h09/mnt/24512/domains/forums.hexagonstar.com/html/bb-includes/functions.bb-core.php on line 1101&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>goebelmasse on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-4230</link>
<pubDate>Thu, 06 Aug 2009 19:53:08 +0000</pubDate>
<dc:creator>goebelmasse</dc:creator>
<guid isPermaLink="false">4230@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;It works out of the box with bbPress 1.0.2 - and it works great!
&#60;/p&#62;</description>
</item>
<item>
<title>geniosity on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-4159</link>
<pubDate>Tue, 28 Jul 2009 15:44:19 +0000</pubDate>
<dc:creator>geniosity</dc:creator>
<guid isPermaLink="false">4159@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;A quick question: is it supposed to change the button for &#34;Reply&#34; when posting replies to forum posts? (If so, how, because it hasn't on my site).&#60;/p&#62;
&#60;p&#62;thanks
&#60;/p&#62;</description>
</item>
<item>
<title>Nightgunner5 on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-3344</link>
<pubDate>Wed, 06 May 2009 22:33:05 +0000</pubDate>
<dc:creator>Nightgunner5</dc:creator>
<guid isPermaLink="false">3344@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://api.clickcha.com/getkeys?url=FORUMADDRESS&#38;amp;email=you@example.com&#34; rel=&#34;nofollow&#34;&#62;http://api.clickcha.com/getkeys?url=FORUMADDRESS&#38;amp;email=you@example.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Copy that down because you'll never be able to use the same url and email to get a key again.
&#60;/p&#62;</description>
</item>
<item>
<title>mentatseb on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-3343</link>
<pubDate>Wed, 06 May 2009 21:02:26 +0000</pubDate>
<dc:creator>mentatseb</dc:creator>
<guid isPermaLink="false">3343@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Hi, is there an alternative way to get the API key? My server security admin disabled the file_get_contents()  function:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>vertus on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-3308</link>
<pubDate>Sat, 02 May 2009 13:09:34 +0000</pubDate>
<dc:creator>vertus</dc:creator>
<guid isPermaLink="false">3308@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Thanks for plugin. Strange thing, but I can't vote for it.
&#60;/p&#62;</description>
</item>
<item>
<title>iDope on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-3282</link>
<pubDate>Tue, 28 Apr 2009 11:03:27 +0000</pubDate>
<dc:creator>iDope</dc:creator>
<guid isPermaLink="false">3282@http://bbpress.org/plugins/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;If someone loads a captcha image multiple times, the circle with the correct answer stays in the same place.&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Yes, currently that does happen. Gonna change that behavior soon.&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62; Also, couldn't someone use one captcha over and over?  &#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;No, the Captcha expires when the solution (correct or incorrect) is submitted for verification. &#60;/p&#62;
&#60;p&#62;Thanks for the feedback Nightgunner5!
&#60;/p&#62;</description>
</item>
<item>
<title>Nightgunner5 on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-3276</link>
<pubDate>Mon, 27 Apr 2009 22:45:40 +0000</pubDate>
<dc:creator>Nightgunner5</dc:creator>
<guid isPermaLink="false">3276@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;If someone loads a captcha image multiple times, the circle with the correct answer stays in the same place. I suggest using urls that expire immediately after use to prevent spam bots from exploiting this &#34;feature&#34;.&#60;/p&#62;
&#60;p&#62;Also, couldn't someone use one captcha over and over?
&#60;/p&#62;</description>
</item>
<item>
<title>iDope on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-3266</link>
<pubDate>Mon, 27 Apr 2009 06:32:19 +0000</pubDate>
<dc:creator>iDope</dc:creator>
<guid isPermaLink="false">3266@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Thanks for letting me know. I have fixed it. &#60;/p&#62;
&#60;p&#62;It was barely any work porting it to bbPress, except bbPress doesn't have as many hooks so I had to use a more generalized hook 'bb_init'.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-3255</link>
<pubDate>Sat, 25 Apr 2009 05:53:42 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">3255@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;I see a stray wp_die in there, you'll have to replace it with bb_die&#60;/p&#62;
&#60;p&#62;Thank you for porting your plugin from WordPress, I wish more authors did that.
&#60;/p&#62;</description>
</item>
<item>
<title>iDope on "Clickcha"</title>
<link>http://bbpress.org/plugins/topic/clickcha/#post-3252</link>
<pubDate>Fri, 24 Apr 2009 12:44:02 +0000</pubDate>
<dc:creator>iDope</dc:creator>
<guid isPermaLink="false">3252@http://bbpress.org/plugins/</guid>
<description>Clickcha is a very unique &#38;amp; secure CAPTCHA that requires just one click instead of typing characters.</description>
</item>

</channel>
</rss>
