recaptcha

ReCaptcha - Could not open socket

Deadly 提交于 2019-12-23 12:28:27
问题 Before I ask this question, let me mention I know there are several of the exact same questions on the site but I am afraid they can't help me out. Hi, Yesterday my ReCaptcha was working fine but now it's not. I am using the library provided by Google and using the proper code. I did not change any code since yesterday so it should still work. However, when I try to submit the form now the page returns Could not open socket . Edit: I just checked and fsockopen is enabled on my server. 回答1: I

implement reCAPTCHA v3 in WordPress loginscreen

隐身守侯 提交于 2019-12-23 06:56:41
问题 Google just released a new beta version of their recaptcha: reCaptcha v3. I am trying to implement this in my WordPress login screens. However it does show the recaptcha logo in the bottom right corner (like here: https://www.google.com/recaptcha/intro/v3beta.html) which indicates that the script is loaded I can not seem to get it triggered. What I've done: 1) Enqueued the API script in the header of my login screens (working) 2) Enqueued some js to trigger the captcha Enqueues public static

how can I install correctly ngx-recaptcha on my project?

断了今生、忘了曾经 提交于 2019-12-23 00:50:35
问题 I'm doing a form to register an Ad, but when I installed the recaptcha it doesn't works Ok, I couldn't reset it or reload it, etc, I've followed the tutorial to the letter and nothing, this is the page, meanly enter link description here <ngx-recaptcha2 #captchaElem [siteKey]="siteKey" (reset)="handleReset()" (expire)="handleExpire()" (load)="handleLoad()" (success)="handleSuccess($event)" [useGlobalDomain]="false" [size]="size" [hl]="lang" [theme]="theme" [type]="type" formControlName=

Operation timed out error

邮差的信 提交于 2019-12-22 18:08:06
问题 I am hitting a wall with reCaptcha.net Some background - I am using reCaptcha-dotnet v1.0.5 which I got from http://code.google.com/p/recaptcha/downloads/list?q=label:aspnetlib-Latest. I was able to develop a site and make it work locally with reCaptcha validation. When I deploy it to the server (the site is hosted on 1and1.com), I am getting the error below - The operation has timed out Description: An unhandled exception occurred during the execution of the current web request. Please

Using reCaptcha with BlogEngine.net

谁说我不能喝 提交于 2019-12-22 14:05:39
问题 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

Recaptcha IP addresses

无人久伴 提交于 2019-12-22 11:11:35
问题 Okay, so we implement Recaptcha in production. We get errors because it can't reach the IP address it needs to use the service. We open a port for the IP address to reach Google. No problem. We do that and configure that IP address explicitly to work. It works great. Then, the next day, we start getting errors again because Recaptcha is using a different IP address. I can allow requests from that IP address, too, but now I'm unsettled. Where are these addresses coming from? How do I configure

Laravel reCaptcha integration

给你一囗甜甜゛ 提交于 2019-12-22 09:51:14
问题 I would like to implement reCaptcha in my Laravel project without using Laravel packages. I have tried with classical reCaptcha V2 which works, but I would like to implement invisible reCaptcha instead. So what I did is this: <form id="subscribeForm" class="form-inline" role="form" method="post" action="/subscribe" style="margin-bottom:70px;"> ... ... <button type="submit" class="btn btn-default">{{trans('content.input_submit')}}</button> <div id="recaptcha" class="g-recaptcha" data-sitekey="

Recaptcha - Script tag injection failing sporadically

北城以北 提交于 2019-12-22 07:10:14
问题 I have a form which uses reCAPTCHA. For some reason, when a user submits this form with an incorrect recapture value, when the page is re-rendered, the recapture fails to render. What it looks like it happening is that recapture attempts to inject a "script" tag, and sporadically (and only in certain browsers, certain environments, and in certain scenarios), it is failing to add that "script" tag to the DOM. It happens like this: 1) There is some inline javascript embedded in the form that

Google Invisible ReCaptcha not invisible

ⅰ亾dé卋堺 提交于 2019-12-22 06:57:55
问题 I just try to get Google Invisible ReCaptcha to work after submitting a form. My problem is, the ReCaptcha is NOT invisible, it looks like the "old" recaptcha is popping up. I don't understand why. My site-key is for invisible recaptcha. Please help me. First of all i'm loading the API: <script src='https://www.google.com/recaptcha/api.js?render=explicit&onload=onScriptLoad' async defer></script> My form looks like this: <form method="post" id="contact-form-face" class="clearfix" onsubmit=

Recaptcha missing-input-response

元气小坏坏 提交于 2019-12-22 04:36:15
问题 Hi guys i have problem with google reCaptcha. Here is my php code: $secret = 'SECRET_KEY'; $response = $_POST['g-recaptcha-respone']; $remoteip = $_SERVER['REMOTE_ADDR']; $url = "https://www.google.com/recaptcha/api/siteverify?secret=$secret&response=$response&remoteip=$remoteip"; $result_json = file_get_contents($url); $resulting = json_decode($result_json, true); print_r($resulting); if($resulting['success']) { //Success } input of print_r is: Array ( [success] => [error-codes] => Array (