I installed a new plugin (BackWPup) on my wordpress installation. Since then the website shows "ERR_TOO_MANY_REDIRECTS".
The example.com page isn’t working
mysite.com redirected you too many times.
Try clearing your cookies.
Cannot access my admin dashboard anymore to deinstall the plugin.
So I logged into the server and had a look at my .htaccess
file to find any redirection loops. Anyone have any Ideas on how to fix this issue?
my .htaccess
file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
php_value upload_max_filesize 64M
php_value post_max_size 128M
php_value memory_limit 256M
php_value max_execution_time 300
php_value max_input_time 300
# END WordPress```