Hi everybody,
I create a Divi form with conditional logic. I tested my form that works correctly when no extension is installed.
I’ve activated one by one the extension and i found that when Hcaptcha is enabled I’ve the error in the screenshot above.
Someone could maybe help me ?
Hi there,
the plugin seems to load the textdomain too early, there are warning thrown in the Dashboard:
Notice: Die Funktion _load_textdomain_just_in_time wurde fehlerhaft aufgerufen. Translation loading for the hcaptcha-for-forms-and-more domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Weitere Informationen: Debugging in WordPress (engl.). (Diese Meldung wurde in Version 6.7.0 hinzugefügt.)
Thanks and kind regards
]]>Hi,
Query monitor extension allowed me to spot this:
is_file(): open_basedir restriction in effect. File(/https://terageek.org/wp-content/plugins/hcaptcha-for-forms-and-more/assets/images/hcaptcha-div-logo.svg) is not within the allowed path(s): (/var/www/vhosts/terageek.org/:/tmp/)
wp-content/plugins/hcaptcha-for-forms-and-more/vendors/matthiasmullie/minify/src/Minify.php:439
1 Extension : hcaptcha-for-forms-and-more
It appears it tries to look for file “/https://” instead of the actual file or actual URL.
I guess there’s a bogus in your code.
Relevant code :
425 /**
426 * Check if the path is a regular file and can be read.
427 *
428 * @param string $path
429 *
430 * @return bool
431 */
432 protected function canImportFile($path)
433 {
434 $parsed = parse_url($path);
435 if (isset($parsed['host']) || isset($parsed['query'])) {
436 return \false;
437 }
438 try {
439 return strlen($path) < \PHP_MAXPATHLEN && @is_file($path) && is_readable($path);
440 } catch (\Exception $e) {
441 return \false;
442 }
443 }
I’m no PHP dev, but I guess there is something wrong with this path.
Note: Latest WP and plugin. PHP 8.2 & 8.3 tested: same issue.
I hope this is useful for the plugin development.
Best regards.
]]>I just noticed that hcaptcha stays blank (gray rectangle with logo, no controls) on an Elementor Form when the “Element Caching” experiment is active.
This can be solved by disabling Element Caching for the specific form element (or disabling the experiment entirely) but maybe you could look into a more permanent solution?
Thanks!
]]>Hello, Heartland Payment systems who has a payment gateway called SecureSubmit for Woo recommended we add your plugin to help prevent credit card testing schemes.
After I added the free version, orders failed with this error code “SecureSubmit payment failed. Gateway response message: “Transaction rejected because the lookup on the supplied token failed.”
I’ve reached out the Heartland developers and they requested I temporarily disable your plugin. Once we did, my client is now able to process orders.
Im not sure what can be done to make these two plugins compatible. We really want to use it.
Please advise on how we can fix this.
Hi! I have a server with some WordPress sites and I’m trying to block bots from spamming the /wp-login.php page. I often get spamming requests like these:
a-random-ip - - [17/Oct/2024:09:04:54 +0200] "POST /wp-login.php HTTP/2.0" 200 4692 "https://mysite.com/wp-login.php" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.240.193 Safari/527.12"
I installed the hCaptcha plugin and enabled it on the login form after two login attempts, but I’m still getting the bots from time to time. Captcha doesn’t seem to get triggered as when I look into the stats for my hCaptcha key, it’s only at two sessions.
Would appreciate some insight on this, thank you ??
]]>HI,
When using Hcaptcha with Ninja Form on WP, sometimes the captcha does not work.
By pressing F5, it displays 1/3
Do you have any idea of ??the problem?
Hey,
would it be possible to support the registration and login form of the Simple Membership Plugin?
[swpm_registration_form]
Thanks
]]>Hey all Have connected with WordPress support who have advised that the plugin is adding a redirect to my landing page has anyone seen this happen before and know how to resolve /?v=8bcc25c96aa5
]]>Hi all,
Thanks for implementing the WooCommerce block-based checkout support earlier.
For awhile now, we’ve had odd reports from customers of having difficulties checking out on our site. It’s been difficult actually engaging one of these customers for more information, let alone being able to reproduce the issue on my own. Just now however, one customer took the time to troubleshoot on their end. They report trying two different systems with the Google Chrome browser, and on both, they report that “it didn’t load properly” (referring to the CAPTCHA). Using Safari, they were able to complete the CAPTCHA. I’ve tried testing on my own with Edge and Chrome, and I could not reproduce the issue.
I know this isn’t a lot to go on, but are there any tools I can employ to try to troubleshoot the issue further? Any thoughts as to why some users may be experiencing issues with the CAPTCHA loading?
Thanks in advance!
]]>hello:
I did not find the site secret in dashboard to fill in the site admin panel, there is just the site key…
also how to add the domain in dashboard ,after saving it disappear if I refresh the page.
]]>Hi team,
How can I disable the new live form preview in Contact Form 7? I want hCaptcha to work on the frontend, but I don’t want any live form preview.
Thanks in advance.
Hi team,
How to completely remove all the data of hCaptcha after plugin deletion?
Thanks!
]]>Hi I’m using hCaptcha with HTML Forms Plugin. hCaptcha works fine when visiting the site incognito or if you are not logged in. However when logged in I get this console error (recaptchacompat disabled) and can not submit the form and then subsequently it doesn’t log as a submission. I have tried toggling the options but none of them fix the issue. I also have the following code in my functions;
<?php
// hCaptcha - see https://htmlformsplugin.com/kb/hcaptcha/
// If a form is submitted without a hcaptcha validation, show the oops something went wrong error
add_filter('hf_validate_form', function( $error_code, $form, $data ) {
$result = hcaptcha_verify_post();
if ( null !== $result ) {
$error_code = 'catcha_failed';
}
return $error_code;
},10,3);
// Execute the hcaptcha shortcode when a {{hcaptcha}} template tag is found in the fields code
add_filter(
'hf_template_tags',
function( $tags ) {
$tags['hcaptcha'] = do_shortcode( '[hcaptcha]' );
return $tags;
}
);
// Turn off the validation on how many fields are expected, as hcaptcha is adding some fields to the form
add_filter( 'hf_validate_form_request_size', '__return_false');
// Filter hcaptcha fields
function ignored_hf_fields() {
return array(
'hcaptcha-widget-id',
'g-recaptcha-response',
'h-captcha-response',
'hcaptcha_nonce'
);
}
add_filter('hf_ignored_field_names','ignored_hf_fields');
Can you help?
]]>Hello there,
I tried creating a custom form with an hCaptcha-Integration.
We did it like in the readme.
this is in the form:
<?= do_shortcode('[hcaptcha force="true" auto="true" action="quote_request_action" name="quote_request"]', false)?>
For verification, we tried both functions:
$result = hcaptcha_request_verify( 'quote_request_action', 'quote_request' );
$r = hcaptcha_verify_post();
But the return is “The response parameter (verification token) is invalid or malformed.”
But: the token in the backend returns valid, and it does work too. The frontend-part of the hCaptcha does work, and it does force you to challenge the captcha, but the serverside verification fails.
Is this a plugin problem?
]]>Hello, on my website I have a Real-Time Marketing Form embedded from Microsoft Dynamics 365. I do not want to integrate Dynamic’s default captcha or Google reCAPTCHA on the form, but I want to set up a captcha (either invisible or not) that will only load the form when users pass it. How would this be possible with hCAPTCHA shortcode?
Would love to know, thank you!
]]>This error occurs on version 4.4.0. I don’t have any pending updates to any plugins or themes. I can reproduce this error when I go to the Entries list at wp-admin/admin.php?page=gf_entries
and click the gear icon to change which columns show up in the table of forms.
[20-Aug-2024 13:35:22 UTC] PHP Fatal error: Uncaught TypeError: HCaptcha\GravityForms\Field::__construct(): Argument #1 ($data) must be of type array, HCaptcha\GravityForms\Field given, called in /home/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-fields.php on line 83 and defined in /home/public_html/wp-content/plugins/hcaptcha-for-forms-and-more/src/php/GravityForms/Field.php:55
Stack trace:
#0 /home/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-fields.php(83): HCaptcha\GravityForms\Field->__construct()
#1 /home/public_html/wp-content/plugins/gravityforms/forms_model.php(1096): GF_Fields::create()
#2 /home/public_html/wp-content/plugins/gravityforms/select_columns.php(207): GFFormsModel::convert_field_objects()
#3 /home/public_html/wp-content/plugins/gravityforms/select_columns.php(309): GFSelectColumns::select_columns_page()
#4 /home/public_html/wp-content/plugins/gravityforms/gravityforms.php(920): require_once('/home/p...')
#5 /home/public_html/wp-includes/class-wp-hook.php(324): GFForms::process_exterior_pages()
#6 /home/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
#7 /home/public_html/wp-includes/plugin.php(517): WP_Hook->do_action()
#8 /home/public_html/wp-admin/admin.php(175): do_action()
#9 /home/public_html/wp-admin/index.php(10): require_once('/home/p...')
#10 {main}
thrown in /home/public_html/wp-content/plugins/hcaptcha-for-forms-and-more/src/php/GravityForms/Field.php on line 55
]]>
On main page of hCaptcha plugin starts showing jquery errors, why and how to fix it?
]]>I’m encountering an issue with hCaptcha loading within Jetpack forms specifically when they’re utilized in Template Parts of Block Themes. However, when the contact form is integrated into a standard post or page, hCaptcha functions correctly.
]]>We are using following code to whitelist specific IP’s while submitting ninja forms in one of our clients site.
/**
* Filter user IP to check if it is whitelisted.
* For whitelisted IPs, hCaptcha will not be shown.
*
* @param bool $whitelisted Whether IP is whitelisted.
* @param string $ip IP.
*
* @return bool
*/
function my_hcap_whitelist_ip( $whitelisted, $ip ) {
// Whitelist local IPs.
if ( false === $ip ) {
return true;
}
// Whitelist some other IPs.
if ( '1.1.1.1' === $ip ) {
return true;
}
return $whitelisted;
}
add_filter( 'hcap_whitelist_ip', 'my_hcap_whitelist_ip', 10, 2 );
Issue is that, this code does not hide hCaptcha from the from but just allows the submission without attempting it. ( Form submits without any issues even if you don’t attempt hCaptcha ).
We want it to be hidden as it actually gets hidden when we add IP address manually in the whitelist settings field.
Thanks!
After the last update (to 4.4.0), if I enable integration with the Jetpack contact form, the contact form Submit no longer works (the page refreshes with the same values in the form, but never submits those values). Turning off the integration in the hCaptcha settings enables the Jetpack contact form to work correctly.
]]>Hi,
I’m using wpdiscuz with hcaptcha. There are lots of problems. But the most fatal one is, users on my website can’t solve the captcha when they’re replying a comment. Works fine everywhere. They can post normal comments. but when trying to solve the hcaptcha on a reply, it never gets solved. It shows the captcha and you can solve it but when you submit it, it stuck there.
Any help would be appreciated. there are tons of other issues I don’t know if can discuss them in this very topic or should open new tickets for different problems.
]]>Hello,
I recently updated the plugin to 4.3.1 and got a fatal error which brought the site down. It seems like it might be linked to the Gravity Forms and potentially the ‘Form Auto-Add’. Our Gravity Forms is currently at version 2.8.13.
Here is the error message we got:
"message": "PHP Fatal error: Uncaught TypeError: Argument 1 passed to HCaptcha\\Vendor\\MatthiasMullie\\Minify\\JS::getOperatorsForRegex() must be of the type array, bool given, called in /wp-content/plugins/hcaptcha-for-forms-and-more/lib/matthiasmullie/minify/src/JS.php on line 266 and defined in /wp-content/plugins/hcaptcha-for-forms-and-more/lib/matthiasmullie/minify/src/JS.php:402#012Stack trace:#012#0 /wp-content/plugins/hcaptcha-for-forms-and-more/lib/matthiasmullie/minify/src/JS.php(266): HCaptcha\\Vendor\\MatthiasMullie\\Minify\\JS->getOperatorsForRegex(false, '/')#012#1 /wp-content/plugins/hcaptcha-for-forms-and-more/lib/matthiasmullie/minify/src/JS.php(156): HCaptcha\\Vendor\\MatthiasMullie\\Minify\\JS->extractRegex()#012#2 /wp-content/plugins/hcaptcha-for-forms-and-more/lib/matthiasmullie/minify/src/Minify.php(133): HCaptcha\\Vendor\\MatthiasMullie\\Minify\\JS->execute(NULL)#012#3 /wp-conten in /wp-content/plugins/hcaptcha-for-forms-and-more/lib/matthiasmullie/minify/src/JS.php on line 402",
Many thanks
]]>Hi!
Please check these warnings:
Warning: include([…]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/CSS.php): Failed to open stream: No such file or directory in […]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/ClassLoader.php on line 576
Warning: include(): Failed opening ‘[…]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/CSS.php’ for inclusion (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in […]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/ClassLoader.php on line 576
Warning: include([…]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php): Failed to open stream: No such file or directory in […]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/ClassLoader.php on line 576
Warning: include(): Failed opening ‘[…]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php’ for inclusion (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in […]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/ClassLoader.php on line 576
Warning: include([…]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/path-converter/src/Converter.php): Failed to open stream: No such file or directory in […]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/ClassLoader.php on line 576
Warning: include(): Failed opening ‘[…]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/path-converter/src/Converter.php’ for inclusion (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in […]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/ClassLoader.php on line 576
Warning: include([…]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/path-converter/src/ConverterInterface.php): Failed to open stream: No such file or directory in […]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/ClassLoader.php on line 576
Warning: include(): Failed opening ‘[…]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/path-converter/src/ConverterInterface.php’ for inclusion (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in […]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/ClassLoader.php on line 576
Warning: include([…]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/JS.php): Failed to open stream: No such file or directory in […]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/ClassLoader.php on line 576
Warning: include(): Failed opening ‘[…]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/JS.php’ for inclusion (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in […]/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/ClassLoader.php on line 576
hCaptcha for WP v. 4.3.1
WP 6.6
I’ve reverted to version 4.2.1 – no warnings.
Hi there!
Could we run hCaptcha on WordPress without jQuery on front-end?
I released my site using only Vanilla JS, everything was great until I decided to replace reCAPTCHA with hCaptcha, which field – without jQuery – was empty.
Hello
I use hcaptcha with cf7 forms. works great (thanks!) but with the cf-7 stripe intgration there is an hcaptacha on both the first and second form step. (ie, the ‘proceed to payment’ and ‘pay now’ steps).
is there a way to suppress hcaptcha on a specific step of a form (ie, the second step)? I’ve seen these notes but don’t think its applies.
thanks
]]>The problem with form in Ninja Forms with hCaptcha whowing in popup via Popup Maker PLUGIN. After solve captcha it shows green check, but after submit return error Please complete the hCaptcha.
]]>Good afternoon,
We are loading a gravity forms form with Ajax.
If a user presses a button on our site, the website will open a popup with an Ajax loaded Gravity form form.
The only problem with this is that the JS of the captcha is not loaded and that the captcha doesn’t work.
Is there a way to always load the JS for hCaptcha or a ways to allow it to load with ajax the same time as gravityforms?
I hope to hear from you guys soon.
With kinde regards,
Mauro
Hello there,
recently we switched from reCaptcha to hCaptcha and noticed that there seems to be a problem with the NinjaForms Addon hCaptcha field and the usage of an file upload field. As long as the hCaptcha field ist present in the form the upload field in this form is no longer working and a JS Console error appears. Here are the details from the JS console in google chrome:
jquery-migrate.min.js?ver=3.4.1:2 JQMIGRATE: Migrate is installed, version 3.4.1
[Violation] Forced reflow while executing JavaScript took 31ms
front-end.js?ver=3.8.3:1 [Violation] 'setTimeout' handler took 59ms
Third-party cookie will be blocked in future Chrome versions as part of Privacy Sandbox.
hcaptcha-nf.min.js?ver=4.2.1:1 Uncaught TypeError: i.startsWith is not a function
at hcaptcha-nf.min.js?ver=4.2.1:1:977
at Function.<anonymous> (jquery.min.js?ver=3.7.1:2:72498)
at Function.each (jquery.min.js?ver=3.7.1:2:3129)
at l (jquery.min.js?ver=3.7.1:2:72464)
at Vt (jquery.min.js?ver=3.7.1:2:72629)
at Function.ajax (jquery.min.js?ver=3.7.1:2:74869)
at Function.<anonymous> (jquery-migrate.min.js?ver=3.4.1:2:4771)
at e.<computed> [as ajax] (jquery-migrate.min.js?ver=3.4.1:2:1582)
at send (jquery.fileupload.js?ver=3.3.16:1014:17)
at x.<computed>.<computed>._onSend (jquery.fileupload.js?ver=3.3.16:1084:14)
(anonym) @ hcaptcha-nf.min.js?ver=4.2.1:1
(anonym) @ jquery.min.js?ver=3.7.1:2
each @ jquery.min.js?ver=3.7.1:2
l @ jquery.min.js?ver=3.7.1:2
Vt @ jquery.min.js?ver=3.7.1:2
ajax @ jquery.min.js?ver=3.7.1:2
(anonym) @ jquery-migrate.min.js?ver=3.4.1:2
e.<computed> @ jquery-migrate.min.js?ver=3.4.1:2
send @ jquery.fileupload.js?ver=3.3.16:1014
_onSend @ jquery.fileupload.js?ver=3.3.16:1084
r.<computed> @ core.min.js?ver=1.13.2:116
data.submit @ jquery.fileupload.js?ver=3.3.16:764
maybeSubmitFieldData @ fieldFile.js?ver=3.3.16:127
add @ fieldFile.js?ver=3.3.16:228
_trigger @ core.min.js?ver=1.13.2:116
(anonym) @ jquery.fileupload.js?ver=3.3.16:1157
each @ jquery.min.js?ver=3.7.1:2
_onAdd @ jquery.fileupload.js?ver=3.3.16:1150
r.<computed> @ core.min.js?ver=1.13.2:116
(anonym) @ jquery.fileupload.js?ver=3.3.16:1357
c @ jquery.min.js?ver=3.7.1:2
add @ jquery.min.js?ver=3.7.1:2
always @ jquery.min.js?ver=3.7.1:2
_onChange @ jquery.fileupload.js?ver=3.3.16:1345
r.<computed> @ core.min.js?ver=1.13.2:116
i @ core.min.js?ver=1.13.2:116
dispatch @ jquery.min.js?ver=3.7.1:2
v.handle @ jquery.min.js?ver=3.7.1:2
Is this a known bug or a way to prevent this from happening?
Thanks and regards
Bernhard
Hi there.
Since last update hcaptcha create an error with matomo analytics.
Can you help?
8 total errors during this script execution, please investigate and try and fix these errors. => CronArchive.php:473; CronArchive.php:468; CronArchive.php:226; Access.php:567; CronArchive.php:230; ScheduledTasks.php:361; class-wp-hook.php:322; class-wp-hook.php:348; plugin.php:565; wp-cron.php:191;
‘Error unserializing the following response from ?module=API&method=CoreAdminHome.archiveReports&idSite=1&period=day&date=2024-07-14&format=json&trigger=archivephp: ‘PHP Warning: include($abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php): Failed to open stream: No such file or directory in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 PHP Warning: include(): Failed opening ‘$abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php’ for inclusion (include_path=’.:/usr/share/php’) in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 {“idarchives”:[3095],”nb_visits”:”112″}” ‘Error unserializing the following response from ?module=API&method=CoreAdminHome.archiveReports&idSite=1&period=day&date=2024-07-13&format=json&trigger=archivephp: ‘PHP Warning: include($abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php): Failed to open stream: No such file or directory in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 PHP Warning: include(): Failed opening ‘$abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php’ for inclusion (include_path=’.:/usr/share/php’) in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 {“idarchives”:[“2924″],”nb_visits”:”107″}” ‘Error unserializing the following response from ?module=API&method=CoreAdminHome.archiveReports&idSite=1&period=day&date=2024-07-12&format=json&trigger=archivephp: ‘PHP Warning: include($abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php): Failed to open stream: No such file or directory in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 PHP Warning: include(): Failed opening ‘$abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php’ for inclusion (include_path=’.:/usr/share/php’) in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 {“idarchives”:[“2708″],”nb_visits”:”119″}” ‘Error unserializing the following response from ?module=API&method=CoreAdminHome.archiveReports&idSite=1&period=day&date=2024-07-11&format=json&trigger=archivephp: ‘PHP Warning: include($abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php): Failed to open stream: No such file or directory in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 PHP Warning: include(): Failed opening ‘$abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php’ for inclusion (include_path=’.:/usr/share/php’) in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 {“idarchives”:[“2486″],”nb_visits”:”85″}” ‘Error unserializing the following response from ?module=API&method=CoreAdminHome.archiveReports&idSite=1&period=day&date=2024-07-10&format=json&trigger=archivephp: ‘PHP Warning: include($abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php): Failed to open stream: No such file or directory in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 PHP Warning: include(): Failed opening ‘$abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php’ for inclusion (include_path=’.:/usr/share/php’) in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 {“idarchives”:[“2264″],”nb_visits”:”101″}” ‘Error unserializing the following response from ?module=API&method=CoreAdminHome.archiveReports&idSite=1&period=week&date=2024-07-08&format=json&trigger=archivephp: ‘PHP Warning: include($abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php): Failed to open stream: No such file or directory in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 PHP Warning: include(): Failed opening ‘$abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php’ for inclusion (include_path=’.:/usr/share/php’) in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 {“idarchives”:[3098],”nb_visits”:737}” ‘Error unserializing the following response from ?module=API&method=CoreAdminHome.archiveReports&idSite=1&period=month&date=2024-07-01&format=json&trigger=archivephp: ‘PHP Warning: include($abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php): Failed to open stream: No such file or directory in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 PHP Warning: include(): Failed opening ‘$abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php’ for inclusion (include_path=’.:/usr/share/php’) in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 {“idarchives”:[3101],”nb_visits”:1508}” ‘Error unserializing the following response from ?module=API&method=CoreAdminHome.archiveReports&idSite=1&period=year&date=2024-01-01&format=json&trigger=archivephp: ‘PHP Warning: include($abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php): Failed to open stream: No such file or directory in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 PHP Warning: include(): Failed opening ‘$abs_path/wp-content/plugins/hcaptcha-for-forms-and-more/vendor/composer/../matthiasmullie/minify/src/Minify.php’ for inclusion (include_path=’.:/usr/share/php’) in $abs_path/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php on line 576 {“idarchives”:[17930],”nb_visits”:5664}” ‘8 total errors during this script execution, please investigate and try and fix these errors.’ => ScheduledTasks.php:375; class-wp-hook.php:322; class-wp-hook.php:348; plugin.php:565; wp-cron.php:191;
]]>