You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The google V3 is using a timeout function of 2 minutes. This plugin doesn't support this system. If you go to a contact page, the google recaptcha is getting rendered ({{ craft.googleRecaptcha.render() }}) But if you submit your form outside these 2 minutes, the submit will fail.
But this seems to be some sort of soft failing ( [web.WARNING] ). Is there a way to fix this? This should be and web.ERROR to catch this problem for the visitor.
The text was updated successfully, but these errors were encountered:
Hi @kevinmu17
v3 is finally out with Craft 5 support and an improvement which prevents the timeout issue by adding a formId parameter to the twig render function.
As a side note, when that kind of error occurs, the verify method will fail, so this is not a soft fail and the user will have to validate the captcha again.
I hope this meets your expectations.
The google V3 is using a timeout function of 2 minutes. This plugin doesn't support this system. If you go to a contact page, the google recaptcha is getting rendered (
{{ craft.googleRecaptcha.render() }}
) But if you submit your form outside these 2 minutes, the submit will fail.2023-09-18 07:46:01 [web.WARNING] [juban\googlerecaptcha\services\Recaptcha::verify] reCAPTCHA check failed: [ 'success' => false 'error-codes' => [ 0 => 'timeout-or-duplicate' ] ] {"memory":19187288}
But this seems to be some sort of soft failing (
[web.WARNING]
). Is there a way to fix this? This should be and web.ERROR to catch this problem for the visitor.The text was updated successfully, but these errors were encountered: