How to Bypass Cloudinos WordPress Login Security Popup

Cloudinos Limited servers have WordPress brute force protection, so you may see a POPUP Authorization box to provide "admin" as your username and password, so the real wp-login.php will be shown. This also occurs when you're trying to comment on posts.

However, you can easily bypass that. Just add the following lines in the ".htaccess" under the public_html folder.

<FilesMatch "^(wp-login|wp-comments-post).php$">
AuthType None
require all granted
</FilesMatch>


This will do the job for both login and comment box! No more pop-up authorization box for wp-login.php access!

Was this answer helpful? 1 Users Found This Useful (1 Votes)