When I install this plugin, it shows a 500 error and I can’t access anything and the website is not viewable to the public. I added the 777 permissions to the .htaccess and still no luck. I had to delete the plugin in my cpanel and the site works again. Could you help?
If it’s helpful, this is the code in the .htaccess file.
# 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>
# END WordPress