recaptcha

Zend Framework 2: How to properly replace Figlet with reCaptcha on zfcUser

烈酒焚心 提交于 2019-12-07 09:04:31
问题 I am trying to replace Figlet with reCaptcha on a zfcUser registration form. Partial instruction on how to accomplish this can be found on https://github.com/ZF-Commons/ZfcUser#changing-registration-captcha-element but no complete instruction exists. Checking the README.md file has a two-step instruction on how to accomplish this but still the CAPTCHA uses Figlet when rendered on the form. Has anyone successfully implemented this? I really need a hand on this one. Thanks in advance. EDIT:

How to put ReCaptcha in a popup?

两盒软妹~` 提交于 2019-12-07 07:24:25
I want to show Recaptcha in a Popup. Like i have a page where the user can submit a note. If someone is submitting a note i want to show a popup where recaptcha control will be there and after validation the note will be submitted. How can i do that? Can someone please help. 来源: https://stackoverflow.com/questions/3656633/how-to-put-recaptcha-in-a-popup

How to prevent spam reviews in Magento

£可爱£侵袭症+ 提交于 2019-12-07 04:10:23
问题 We have been seeing a number of spam product reviews in our Magento store. I recently installed the Fontis reCaptcha extension to add a reCaptcha form to the reviews form. In all my testing, this works great. A "real" user can't submit the form without filling out the reCaptcha portion. However, this hasn't fixed the problem. We are still getting spam reviews. Interestingly, these spam reviews also don't have a star rating. Somehow, these spam bots are able to submit a review without all the

reCAPTCHA authenticates as valid even for two incorrect words

你。 提交于 2019-12-07 03:47:56
问题 Just to give a background for my question, I am using Vanilla Forums for a website I run. Vanilla Forums comes with baked-in support for using reCAPTCHA to authenticate new registrations on the website, which I have enabled. Recently on my forum, however, I have seen a spike in spam registrations (obvious 'spammy' usernames, same email address used, et al.) I looked into this to try to see how spambots could be getting past the reCAPTCHA verification. I know that in reCAPTCHA, one of the

Google reCaptcha reset in TypeScript

孤人 提交于 2019-12-07 03:18:12
问题 I'm developing Angular 2 + TypeScript app. I need to reset reCaptcha if form is invalid. But in my typescript code when I write grecaptcha.reset(); , I get error: Can not resolve symbol 'grecaptcha' How can I reset reCaptcha or resolve/declare grecaptcha variable and where? 回答1: For updated answer see Correct way to integrate reCAPTCHA with Angular 4 Original Answer For Typescript, declare grecaptcha : declare var grecaptcha: any; This presumes that the reCAPTCHA api has been included,

How to reduce the Recaptcha difficulty?

余生颓废 提交于 2019-12-07 00:34:39
问题 I use RecaptchaControl, and the users complain that the image is not that clear (the black part in the the captcha is too hard to read). Is there any property to make the image less difficult (less noisy)? <recaptcha:RecaptchaControl ID="recaptcha" runat="server" PublicKey="XXX" PrivateKey="YYY" OverrideSecureMode="true" /> 回答1: Possibly not what you are looking for but there are lots of custom captcha controls out there i.e. CaptchaNET_2.aspx With a bit of knowledge of the Graphics classes

ReCAPTCHA couldn't find user-provided function: myCallBack

我的梦境 提交于 2019-12-06 18:31:48
问题 I'm trying to use ReCAPTCHA where I am getting following error. ReCAPTCHA couldn't find user-provided function: myCallBack. How can I solve this issue? var verifyCallback3 = function(response) { if(response!=null){ $("#rss").show(); } }; var myCallBack = function() { grecaptcha.render('html_element', { 'sitekey' : '6sssfffffffffAAPfEI_RkbAlUuw5FA4p-kiGy5Nea', 'callback' : verifyCallback3, 'theme' : 'light', 'type':'image' }); }; 回答1: Make sure your callback function is being defined in the

Using reCaptcha with BlogEngine.net

两盒软妹~` 提交于 2019-12-06 14:22:04
I have just installed reCaptcha on my site and put the control on my comment post, so far so good. Now to validate reCaptcha it says just do Page.IsValid. However BlogEngine uses Ajax and some JS to post its addComment function and if I test that there I just get error on page in the status bar. Here is the bloengine post function - /// <summary> /// Processes a callback event that targets a control. /// </summary> /// <param name="eventArgument">A string that represents an event argument to pass to the event handler.</param> public void RaiseCallbackEvent(string eventArgument) { if (

How to validate Google reCaptcha v2 using phalcon/volt forms?

蓝咒 提交于 2019-12-06 14:18:03
问题 How do you validate the new Google reCaptcha using volt and phalcon techniques? (Just wanted to share what I did to make it work, see answer below, hope it helps...) 回答1: What you will need A Validator (RecaptchaValidator in this case) Form implementation Controller implementation (actually no changes needed here, but for completeness...) View implementation (optional) Config entries for your recaptcha keys and url (nicer/cleaner this way) (optional) A recaptcha element for automatic

Rails Recaptcha plugin always returns false

拥有回忆 提交于 2019-12-06 14:06:48
问题 I'm using the rails recaptcha plugin found here: http://github.com/ambethia/recaptcha/tree/master I have signed up for an account on recaptcha.com, obtained a public & private key, and the site is configured with a global key (for now). In config/environment.rb I setup the environment variables: ENV['RECAPTCHA_PUBLIC_KEY'] = 'xxxxxxxxxxxxxxxx' ENV['RECAPTCHA_PRIVATE_KEY'] = 'XXXXXXXXXXXXXXxx' In my view I render the captcha like this: <%= recaptcha_tags %> And in my controller processing this