How can I get ambethia's captcha plugin to work in rails 3?
Posted
by James
on Stack Overflow
See other posts from Stack Overflow
or by James
Published on 2010-06-11T21:39:58Z
Indexed on
2010/06/11
21:42 UTC
Read the original article
Hit count: 683
I have installed ambethia's captcha plugin as a plugin in my rails 3 app. When I put the <%= recaptcha_tags %>
in my view, it puts this on the page:
<script type="text/javascript" src="http://api.recaptcha.net/challenge?k=my_key&error=expression"></script> <noscript> <iframe src="http://api.recaptcha.net/noscript?k=my_other_key" height="300" width="500" frameborder="0"></iframe><br/> <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea> <input type="hidden" name="recaptcha_response_field" value="manual_challenge"></noscript>
Is there a way that I can make this work in rails 3? I'd appreciate any help.
© Stack Overflow or respective owner