Hello
Normally, in admin tool, i can block some ip but not all.
i would like to know, if it is possible to block all public ip and only had exception for the ip i want to be able to connect to the website ( 4 or 5 only) ?
Regards
Damien
Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.
Latest post by nicholas on Monday, 03 April 2023 04:05 CDT
Hello
Normally, in admin tool, i can block some ip but not all.
i would like to know, if it is possible to block all public ip and only had exception for the ip i want to be able to connect to the website ( 4 or 5 only) ?
Regards
Damien
If you want to do this for the backend only there's of course the “Exclusive Allow IP List” feature.
If you want to limit access to the entire site, including the front-end, it makes no sense using a PHP-based solution when this can be already be done at the web server level. For example, if you are using Apache or LiteSpeed you can put this in your .htaccess file:
<RequireAll>
Require all denied
Require ip 1.2.3.4
Require ip 5.6.7.8
Require ip 9.10.11.12
# ...and so on.
</RequireAll>
Nicholas K. Dionysopoulos
Lead Developer and Director
🇬🇷Greek: native 🇬🇧English: excellent 🇫🇷French: basic • 🕐 My time zone is Europe / Athens
Please keep in mind my timezone and cultural differences when reading my replies. Thank you!
Working hours: We are open Monday to Friday, 9am to 7pm Cyprus timezone (EET / EEST). Support is provided by the same developers writing the software, all of which live in Europe. You can still file tickets outside of our working hours, but we cannot respond to them until we're back at the office.
Support policy: We would like to kindly inform you that when using our support you have already agreed to the Support Policy which is part of our Terms of Service. Thank you for your understanding and for helping us help you!