Hello,
I’m using Kleo 4.1.3 on a WordPress 4.6 installation.
Users are able to login fine by going to site-url/wp-admin
However, when they try to use the pop-up login on the front end, they always get the 406 error.
Full text of the error is: “Error 406 – Not Acceptable Generally a 406 error is caused because a request has been blocked by Mod Security. If you believe that your request has been blocked by mistake please contact the web site owner.”
I don’t believe there are any other plugins conflicting with the login to cause that. Any ideas/suggestions?
FYI my .htaccess file reads:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
# END WordPress
Thank you!
Eric