flemmo
Forum Replies Created
-
Thank you for the detailed reply, Peter. Much appreciated.
A few hours after I made the post, the login attempts stopped. I’m not sure why, perhaps open sessions needed to expire?
I’ve also since set up a honey trap page (not indexed) to instantly block anyone that lands in it. A very useful Wordfence feature!
My next challenge is to figure out why I’m getting occasional 508 resource limits, seemingly from admin-ajax.php. But I realise that’s not a Wordfence issue.
Thanks again for your assistance.
ChrisForum: Plugins
In reply to: [WooCommerce] Calculate shipping with just the country selectedHi @rur165,
Thank you for the reply.
I managed to get a solution that works for me. With geolocation on, I made sure to untick both ‘Enable the shipping calculator on the basket page’ and ‘Hide shipping costs until an address is entered’ on the shipping options page.Now customers will now get the correct shipping options and prices by default, without having to enter their full address.
Forum: Plugins
In reply to: [WooCommerce] Updating to PHP 7.4 causes my woocommerce site to bugThe same think has happened to me on PHP 7.4 also. Exactly the same error messages which resulted in non-logged in users (guests) not being able to add products to the basket. They received a notification that the product was added, but the basket was empty.
I deactivated WooCommerce, switched to PHP 7.2 and re-enabled WooCommerce. Errors gone and guest basket problem cured.
Thanks Mark,
In the end I decided to go down the htaccess route with the following code that only allows access via a specified web address, thus excluding access by bots.
<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_METHOD} POST RewriteCond %{HTTP_REFERER} !^http://(.*)?example\.com [NC] RewriteCond %{REQUEST_URI} ^(.*)?wp-login\.php(.*)$ [OR] RewriteCond %{REQUEST_URI} ^(.*)?wp-admin$ RewriteRule ^(.*)$ - [F] </IfModule>Hi, Mark.
Thanks for the suggestion. I’m not sure how to go about breaking out the IP addresses in my whitelist?For example, say I want to block every IP address other than 2.28.167.233 and 213.205.192.10
Thanks for your help.
ChrisForum: Plugins
In reply to: [Theme My Login] Recaptcha on Login PageHi cpaprotna,
Thanks for the suggestion. Yes, we already use an admin name different to plain old admin. Unfortunately one of the bots hit upon the correct one! We use a security plugin to block access after repeated failed logins so we were locked out for the best part of a day.
The bot appears to have moved onto different usernames now.It’s just a shame TML only has the recaptcha on the registration page and not the login page.
Forum: Plugins
In reply to: [Theme My Login] Recaptcha on Login PageHi Jeff,
Has there been any progress on this?
I’m getting locked out of my own site due to failed login attempts by bots, so I would really appreciate recaptcha on the login page 🙂Chris
Forum: Plugins
In reply to: [Theme My Login] Recaptcha not working on login pageNo problem. Any chance it could be added in the future?
Happy New Year too!
Forum: Plugins
In reply to: [Theme My Login] Recaptcha not working on login pageYes, but my understanding is this only adds the recaptcha to the registration page, not the plugin page. It didn’t appear on the login page for me anyway.
Forum: Plugins
In reply to: [Theme My Login] Recaptcha on Login Page+1. I’m also getting brute force attacks on the login page on a daily basis.
Forum: Fixing WordPress
In reply to: Determine where a comment is top level?Forum: Fixing WordPress
In reply to: 3.5 update broke all of my jqueryHi Samuel,
Sorry for the late reply.
It was ‘Ajax Search Pro’ causing the issue. The developer has since released a new version that has fixed the problem 🙂It was caused by the plugin inserting its own JQuery reference, when one had already been inserted.
Forum: Fixing WordPress
In reply to: 3.5 update broke all of my jquerysame problem for me. The problem occurs in the betas too.
This is because the jquery script is returning ‘TypeError’ and therefore not running the rest of the script.
I found this:
http://stackoverflow.com/questions/7975093/typeerror-undefined-is-not-a-function-evaluating-documentNot sure how to solve the problem though!