<?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: How to use reCAPTCHA with CI</title>
	<atom:link href="http://www.christophermonnat.com/2008/09/how-to-use-recaptcha-with-ci/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.christophermonnat.com/2008/09/how-to-use-recaptcha-with-ci/</link>
	<description>Programmer Extraordinaire</description>
	<lastBuildDate>Thu, 11 Mar 2010 13:05:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Stuart</title>
		<link>http://www.christophermonnat.com/2008/09/how-to-use-recaptcha-with-ci/comment-page-1/#comment-582</link>
		<dc:creator>Stuart</dc:creator>
		<pubDate>Thu, 14 Jan 2010 15:23:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.christophermonnat.com/?p=160#comment-582</guid>
		<description>Thanks very much, useful information.</description>
		<content:encoded><![CDATA[<p>Thanks very much, useful information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kurucu</title>
		<link>http://www.christophermonnat.com/2008/09/how-to-use-recaptcha-with-ci/comment-page-1/#comment-521</link>
		<dc:creator>Kurucu</dc:creator>
		<pubDate>Mon, 21 Sep 2009 10:33:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.christophermonnat.com/?p=160#comment-521</guid>
		<description>Nice article - clear and easy to follow! Better than the current CI documentation on reCaptcha, I think!

Thanks for taking the time to explain it.</description>
		<content:encoded><![CDATA[<p>Nice article &#8211; clear and easy to follow! Better than the current CI documentation on reCaptcha, I think!</p>
<p>Thanks for taking the time to explain it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.christophermonnat.com/2008/09/how-to-use-recaptcha-with-ci/comment-page-1/#comment-175</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Sun, 04 Jan 2009 23:55:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.christophermonnat.com/?p=160#comment-175</guid>
		<description>I have gotten everything working as it is supposed to (and yes, I am using CI 1.7) But no matter what i type into the captcha field, it still comes back with the error flag you set that says, &quot;Your answer for the security question was incorrect, please try again.&quot;

I am assuming that the captcha api public and private codes are being found by the captcha script, or else i would get an error message. i am not sure where i am going wrong. Any suggestions?</description>
		<content:encoded><![CDATA[<p>I have gotten everything working as it is supposed to (and yes, I am using CI 1.7) But no matter what i type into the captcha field, it still comes back with the error flag you set that says, &#8220;Your answer for the security question was incorrect, please try again.&#8221;</p>
<p>I am assuming that the captcha api public and private codes are being found by the captcha script, or else i would get an error message. i am not sure where i am going wrong. Any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.christophermonnat.com/2008/09/how-to-use-recaptcha-with-ci/comment-page-1/#comment-174</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sun, 04 Jan 2009 16:29:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.christophermonnat.com/?p=160#comment-174</guid>
		<description>Hi Ryan: by validation code, are you referring to the val_recaptcha() function? If so, that function needs to live in the controller you&#039;re using it with. It&#039;s being accessed by CI&#039;s validation library via a callback and to my knowledge you can&#039;t put validation functions elsewhere if your using callbacks (unless your using CI 1.7).

The most efficient way I have found to validate the recaptcha control is the way I have shown above, by calling the custom validation function using CI&#039;s validation library using a callback. That allows you to use CI&#039;s built in validation functionality as opposed to writing something yourself (which would result in more code).</description>
		<content:encoded><![CDATA[<p>Hi Ryan: by validation code, are you referring to the val_recaptcha() function? If so, that function needs to live in the controller you&#8217;re using it with. It&#8217;s being accessed by CI&#8217;s validation library via a callback and to my knowledge you can&#8217;t put validation functions elsewhere if your using callbacks (unless your using CI 1.7).</p>
<p>The most efficient way I have found to validate the recaptcha control is the way I have shown above, by calling the custom validation function using CI&#8217;s validation library using a callback. That allows you to use CI&#8217;s built in validation functionality as opposed to writing something yourself (which would result in more code).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.christophermonnat.com/2008/09/how-to-use-recaptcha-with-ci/comment-page-1/#comment-173</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Sun, 04 Jan 2009 06:43:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.christophermonnat.com/?p=160#comment-173</guid>
		<description>Where does that validation code belong? Within the captcha helper file? 

Also, what is the most efficient way to call it from within the controller during form validation? Beyond that, I had no issues using the tutorial you wrote to implement the ReCaptcha. 

I would note however that the helper file needs to be renamed to something like recaptcha_helper.php, as CI looks for helper files to have the _helper at the end of helper file names.

Thanks...</description>
		<content:encoded><![CDATA[<p>Where does that validation code belong? Within the captcha helper file? </p>
<p>Also, what is the most efficient way to call it from within the controller during form validation? Beyond that, I had no issues using the tutorial you wrote to implement the ReCaptcha. </p>
<p>I would note however that the helper file needs to be renamed to something like recaptcha_helper.php, as CI looks for helper files to have the _helper at the end of helper file names.</p>
<p>Thanks&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
