<?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: Create custom reCAPTCHA images using their API</title>
	<atom:link href="http://www.web-development-blog.com/archives/create-custom-recaptcha-images-using-their-api/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.web-development-blog.com/archives/create-custom-recaptcha-images-using-their-api/</link>
	<description>Read about Website Development, Online Marketing and Web Hosting</description>
	<lastBuildDate>Wed, 08 Feb 2012 09:30:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Olaf</title>
		<link>http://www.web-development-blog.com/archives/create-custom-recaptcha-images-using-their-api/#comment-127185</link>
		<dc:creator>Olaf</dc:creator>
		<pubDate>Wed, 11 May 2011 03:51:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=715#comment-127185</guid>
		<description>you&#039;re welcome Angela :)</description>
		<content:encoded><![CDATA[<p>you&#8217;re welcome Angela <img src='http://cdn.web-development-blog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: angela</title>
		<link>http://www.web-development-blog.com/archives/create-custom-recaptcha-images-using-their-api/#comment-127184</link>
		<dc:creator>angela</dc:creator>
		<pubDate>Wed, 11 May 2011 01:04:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=715#comment-127184</guid>
		<description>thanks olaf ^^</description>
		<content:encoded><![CDATA[<p>thanks olaf ^^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Olaf</title>
		<link>http://www.web-development-blog.com/archives/create-custom-recaptcha-images-using-their-api/#comment-127180</link>
		<dc:creator>Olaf</dc:creator>
		<pubDate>Tue, 10 May 2011 18:59:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=715#comment-127180</guid>
		<description>Hello Angela,

you need to install cURL on your web server. Ask your hosting provider to do that for you, it&#039;s a very common library.</description>
		<content:encoded><![CDATA[<p>Hello Angela,</p>
<p>you need to install cURL on your web server. Ask your hosting provider to do that for you, it&#8217;s a very common library.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Angela</title>
		<link>http://www.web-development-blog.com/archives/create-custom-recaptcha-images-using-their-api/#comment-127179</link>
		<dc:creator>Angela</dc:creator>
		<pubDate>Tue, 10 May 2011 18:26:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=715#comment-127179</guid>
		<description>Hi,

In my case if i put wrong code or nothing it won&#039;t submit so this is working fine for me but when i submit with proper code it says 
Fatal error: Call to undefined function curl_init()on recaptcha.php line 9

this is the line it refers to 

$ch = curl_init(&quot;http://api-verify.recaptcha.net/verify&quot;);

and the rest of it is

curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
	$data = curl_exec($ch);
	curl_close($ch);
	$response = explode(PHP_EOL, $data);
	if ($response[0] == &#039;true&#039;) {
		echo &#039;Success, you may proceed!&#039;;
	} else {
		echo &#039;Error, please try again.&#039;;
		// check the API documentation for detailed error reports
	}


Hope you can help me please

Best</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>In my case if i put wrong code or nothing it won&#8217;t submit so this is working fine for me but when i submit with proper code it says<br />
Fatal error: Call to undefined function curl_init()on recaptcha.php line 9</p>
<p>this is the line it refers to </p>
<p>$ch = curl_init(&#8220;http://api-verify.recaptcha.net/verify&#8221;);</p>
<p>and the rest of it is</p>
<p>curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);<br />
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
	$data = curl_exec($ch);<br />
	curl_close($ch);<br />
	$response = explode(PHP_EOL, $data);<br />
	if ($response[0] == &#8216;true&#8217;) {<br />
		echo &#8216;Success, you may proceed!&#8217;;<br />
	} else {<br />
		echo &#8216;Error, please try again.&#8217;;<br />
		// check the API documentation for detailed error reports<br />
	}</p>
<p>Hope you can help me please</p>
<p>Best</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Olaf</title>
		<link>http://www.web-development-blog.com/archives/create-custom-recaptcha-images-using-their-api/#comment-126969</link>
		<dc:creator>Olaf</dc:creator>
		<pubDate>Fri, 01 Apr 2011 06:57:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=715#comment-126969</guid>
		<description>Hi,
do you tried the example code?

(I removed your code because it wasn&#039;t stored by 100% by wordpress)</description>
		<content:encoded><![CDATA[<p>Hi,<br />
do you tried the example code?</p>
<p>(I removed your code because it wasn&#8217;t stored by 100% by wordpress)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Film Megaupload</title>
		<link>http://www.web-development-blog.com/archives/create-custom-recaptcha-images-using-their-api/#comment-126968</link>
		<dc:creator>Film Megaupload</dc:creator>
		<pubDate>Fri, 01 Apr 2011 01:45:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=715#comment-126968</guid>
		<description>Hello, 

I followed exactly your steps as described, the captcha work, but when i submit the form, even if i put wrong code or nothing and i click submit, the form gets submited, im using it to secure a link (URL).

If you can be of any help please ...
Regards</description>
		<content:encoded><![CDATA[<p>Hello, </p>
<p>I followed exactly your steps as described, the captcha work, but when i submit the form, even if i put wrong code or nothing and i click submit, the form gets submited, im using it to secure a link (URL).</p>
<p>If you can be of any help please &#8230;<br />
Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Olaf</title>
		<link>http://www.web-development-blog.com/archives/create-custom-recaptcha-images-using-their-api/#comment-126276</link>
		<dc:creator>Olaf</dc:creator>
		<pubDate>Sat, 26 Feb 2011 07:30:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=715#comment-126276</guid>
		<description>Hello Bob,

I took some example code and put that code together with jQuery contact form plugin :)
I&#039;m the example code from here on several websites (try the contact form on my company site finalwebsites.nl)
Anyway do you have any problems with this code? Since I&#039;m using the reCaptcha image on dutch language websites I think the challenges are very hard, even if use &quot;nl&quot; as localization parameter.</description>
		<content:encoded><![CDATA[<p>Hello Bob,</p>
<p>I took some example code and put that code together with jQuery contact form plugin <img src='http://cdn.web-development-blog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I&#8217;m the example code from here on several websites (try the contact form on my company site finalwebsites.nl)<br />
Anyway do you have any problems with this code? Since I&#8217;m using the reCaptcha image on dutch language websites I think the challenges are very hard, even if use &#8220;nl&#8221; as localization parameter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bob</title>
		<link>http://www.web-development-blog.com/archives/create-custom-recaptcha-images-using-their-api/#comment-126261</link>
		<dc:creator>bob</dc:creator>
		<pubDate>Sat, 26 Feb 2011 01:25:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=715#comment-126261</guid>
		<description>This is weird. The ReCaptcha documentation says to put recaptcha_image inside recaptcha_widget, and to give recaptcha_widget as the value of the option custom_theme_widget. However, just have recaptcha_image by itself, and instead pass that as the div argument to Recaptcha.create(). Is that legit?</description>
		<content:encoded><![CDATA[<p>This is weird. The ReCaptcha documentation says to put recaptcha_image inside recaptcha_widget, and to give recaptcha_widget as the value of the option custom_theme_widget. However, just have recaptcha_image by itself, and instead pass that as the div argument to Recaptcha.create(). Is that legit?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eddie</title>
		<link>http://www.web-development-blog.com/archives/create-custom-recaptcha-images-using-their-api/#comment-120704</link>
		<dc:creator>eddie</dc:creator>
		<pubDate>Tue, 22 Dec 2009 13:35:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=715#comment-120704</guid>
		<description>Thanks man! easy to follow.</description>
		<content:encoded><![CDATA[<p>Thanks man! easy to follow.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: finalwebsites.com</title>
		<link>http://www.web-development-blog.com/archives/create-custom-recaptcha-images-using-their-api/#comment-120551</link>
		<dc:creator>finalwebsites.com</dc:creator>
		<pubDate>Wed, 09 Dec 2009 06:24:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=715#comment-120551</guid>
		<description>&lt;blockquote&gt;Your tutorial is well written and is helpful for people to learn how to integrate with reCAPTCHA.
&lt;/blockquote&gt;

The reason for this tutorial is to show how stuff works PLUS how-to create a custom challenge for your form using jQuery and the jQuery form plugin.
I&#039;m sure there are many scripts for creating and validating a reCAPTCHA challenge, but do the work slightly together with jQuery like in this tutorial? I don&#039;t think so...</description>
		<content:encoded><![CDATA[<blockquote><p>Your tutorial is well written and is helpful for people to learn how to integrate with reCAPTCHA.
</p></blockquote>
<p>The reason for this tutorial is to show how stuff works PLUS how-to create a custom challenge for your form using jQuery and the jQuery form plugin.<br />
I&#8217;m sure there are many scripts for creating and validating a reCAPTCHA challenge, but do the work slightly together with jQuery like in this tutorial? I don&#8217;t think so&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Database Caching 26/36 queries in 0.018 seconds using disk: basic
Object Caching 482/486 objects using disk: basic
Content Delivery Network via cdn.web-development-blog.com

Served from: www.web-development-blog.com @ 2012-02-08 10:46:27 -->
