GetSimple Support Forum

Full Version: failedlogins.log
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In the failed connections file I find a few IPs with failed connection attempts that I don't recognize. How can I block access to these IPs?
(2024-01-13, 17:39:24),LogicPHP Wrote: [ -> ]In the failed connections file I find a few IPs with failed connection attempts that I don't recognize. How can I block access to these IPs?


Use your existing .htaccess file located in the root, add something similar to the following:



Code:
# Blocked IP Addresses
Order Deny,Allow
Deny from 123.45.67.89
Deny from 123.45.67.90
(2024-01-13, 20:08:11)islander Wrote: [ -> ]
(2024-01-13, 17:39:24),LogicPHP Wrote: [ -> ]In the failed connections file I find a few IPs with failed connection attempts that I don't recognize. How can I block access to these IPs?


Use your existing .htaccess file located in the root, add something similar to the following:



Code:
# Blocked IP Addresses
Order Deny,Allow
Deny from 123.45.67.89
Deny from 123.45.67.90

thanks for the reply