apalazzin
Forum Replies Created
-
Forum: Plugins
In reply to: [Invisible reCaptcha for WordPress] Strange error message in log fileForum: Plugins
In reply to: [Invisible reCaptcha for WordPress] Strange error message in log fileYes,
it happens 1 or 2 times a day.It seems a compatibility issue with the “Woocommerce Slack” plugin (“Slackbot-LinkExpanding 1.0 (+https://api.slack.com/robots)”.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Subscriptions Renewal ProblemThe debate has moved here:
https://github.com/wpovernight/woocommerce-pdf-invoices-packing-slips/issues/10
Justin reply:
The issue is not a conflict in the plugins but rather the lack of headers in the cURL call to the server. Ensure that the user-agent and referral header are present during any call to the server to WP Better Security will block the requests as a spam bot.
The line in the .htaccess file causing the issue is below.
# End Abuse HTTP Referrer Blocking
RewriteRule ^.* – [F,L]Fix these lines inside plugin folder:
- login.php
if ( isset( self::$plugin_options['captcha_wc_login'] ) && self::$plugin_options['captcha_wc_login'] == 'yes' ) {
- lost-password.php
if ( isset( self::$plugin_options['captcha_wc_lost_password'] ) && self::$plugin_options['captcha_wc_lost_password'] == 'yes' ) {
- registration.php
if ( isset( self::$plugin_options['captcha_wc_registration'] ) && self::$plugin_options['captcha_wc_registration'] == 'yes' ) {
Hi,
I’ve resolved this error changing || in && on the warning lines.I’ve contacted the author to request the fix of these errors in the next plugin upgrade.
- login.php