Similar issue with the local tasks: https://www.drupal.org/project/drupal/issues/3553342 🐛 Race condition in LocalTaskManager::getLocalTasks() with fibers Active
@dewancodes
I'm not the project maintainer, so I don't know.
At first, it should be tested by someone, and if everything is ok, then the issue status should be changed to Reviewed & tested by the community.
Then you can try to ask someone from the maintainers list to create a new release.
That library can fetch the API key from different locations: like JSON file, ENV variable...
You can find an example of passing the API key by this link https://cloud.google.com/recaptcha/docs/create-assessment-website#create...
And possibly better to use the official Google package instead of the custom Enterprise class: https://github.com/googleapis/google-cloud-php-recaptcha-enterprise
@imran2734
Why do we need this new setting: recaptcha_is_human_score? It looks like we already have it in the action config.
@bhogue
Good catch, now it should be fixed.
dench0 → created an issue.
IMO I agree that we need to remove the ['callable' => 'menu.default_tree_manipulators:checkNodeAccess'] manipulator and use the manipulators as in the SystemMenuBlock . The checkNodeAccess can lead to some issues when using other modules, e.g.:
https://www.drupal.org/project/field_menu/ →
Can we reopen this issue since it has not been resolved?
@munish.kumar
Hi,
this will not work: library_info is cached. So it will use the correct language for the first visit, but if you switch language to another one, then it will use the cached version.
You need to check the solution in the recaptcha module https://git.drupalcode.org/project/recaptcha/-/blob/8.x-3.x/recaptcha.mo... .
What version of the recaptcha module do you have installed?
It looks like you are using an outdated recaptcha package. There are those properties in the 1.3.0 version https://github.com/google/recaptcha/blob/master/src/ReCaptcha/ReCaptcha....
The markup seems ok
Is there a token value?
How can I check if the captcha value is sent with form data on form submission on a registration form ?
In the browser developer tools - on the network tab.
Again this was already discussed in some of the previous issues: e.g. here 🐛 recaptcha_v3 working intermittenly Active .
I don't mean to be rude, but I highly recommend that you check issues before creating a new question: there are only 15 issues with the "Google reCAPTCHA v3 validation failed" and it should not take a lot of time to check them.
@sébastien-fr
1. Are there any errors in the browser console?
2. Check this
commentary
🐛
The response parameter is missing.
Closed: works as designed
. Do you see the element and does it have a value?
3. Check if the captcha value is sent with form data on form submission.
There are some similar issues, you can review them as well.
Someone helped just create a new site in the google console 🐛 Error message: Antibot verification failed Fixed .
@voleger
days argument is not optional. It just behaves differently if the days argument value is 0.
https://git.drupalcode.org/project/dismissible_message_bar/-/blob/8.x-1....
https://git.drupalcode.org/project/dismissible_message_bar/-/blob/8.x-1....
https://git.drupalcode.org/project/dismissible_message_bar/-/blob/8.x-1....
dench0 → changed the visibility of the branch 3491948-update-modules-dependencies to hidden.
@carolpettirossi
You need to check the captcha points settings /admin/config/people/captcha/captcha-points
@dhruv.mittal
thanks
Do you have a captcha response like the one on this screenshot?
Fix src/Event/TrackCheckoutStepEvent.php use statement.
/**
* Implements hook_editor_js_settings_alter().
*/
function <module_name>_editor_js_settings_alter(array &$settings) {
foreach ($settings['editor']['formats'] as &$format) {
if (!empty($format['editorSettings']['config']['link']['decorators'])) {
foreach ($format['editorSettings']['config']['link']['decorators'] as &$decorator) {
$target = $decorator['attributes']['target'] ?? FALSE;
if ($target === '_blank') {
$decorator['defaultValue'] = TRUE;
}
}
}
}
}
1. We can use `RedundantEditableConfigNamesTrait`
2. Please revert this change https://git.drupalcode.org/project/recaptcha_v3/-/merge_requests/30/diff...
3. Increase the drupal core version in the composer.json to ^10.2
Closed in favor of this issue: https://www.drupal.org/project/recaptcha_v3/issues/3467524 📌 Use #config_target for the ReCaptchaV3SettingsForm Active
@seanr,
please read the issue description, it does not relate to your case.
Hi @here,
you can try this
https://www.drupal.org/project/recaptcha_v3/issues/3447924#comment-15630224
🐛
Error message: Antibot verification failed
Fixed
, it might help.
Thanks but when I don't have a captcha element, but do have a captcha point, I don't see a badge
then you need to check if you are using the correct form id.
If you are talking about webforms, you need to use only one method: captcha point or webform captcha element.
So you suggest unchecking on both Google and in Drupal? (despite what is says about doing one or the other)
Just for testing purposes.