drmdave
Forum Replies Created
-
This is the link of my blog https://www.apnazon.com/blog/
Forum: Plugins
In reply to: [GZip Ninja Speed Compression] 500 Internal Server ErrorI had a single site based on wordpress and installed your gzip ninja plugin. It was working fine.
Now I have a multi-site install on the same server, and after installing gzip ninja plugin, it is giving me 500 internal server error.
After I removed the
_________________________________________________________________
# GZip Ninja Speed — Starts here
# Do not write anything between “GZip Ninja Speed — Starts” and “GZip Ninja Speed — Ends”
# It will be deleted while uninstalling GZip Ninja Speed plugin
AddOutputFilterByType DEFLATE text/plain #GZip Ninja Speed
AddOutputFilterByType DEFLATE text/html #GZip Ninja Speed
AddOutputFilterByType DEFLATE text/xml #GZip Ninja Speed
AddOutputFilterByType DEFLATE text/css #GZip Ninja Speed
AddOutputFilterByType DEFLATE application/xml #GZip Ninja Speed
AddOutputFilterByType DEFLATE application/xhtml+xml #GZip Ninja Speed
AddOutputFilterByType DEFLATE application/rss+xml #GZip Ninja Speed
AddOutputFilterByType DEFLATE application/javascript #GZip Ninja Speed
AddOutputFilterByType DEFLATE application/x-javascript #GZip Ninja Speed
AddType x-font/otf .otf #GZip Ninja Speed
AddType x-font/ttf .ttf #GZip Ninja Speed
AddType x-font/eot .eot #GZip Ninja Speed
AddType x-font/woff .woff #GZip Ninja Speed
AddType image/x-icon .ico #GZip Ninja Speed
AddType image/png .png #GZip Ninja Speed
# GZip Ninja Speed — Ends here
_______________________________________________________________________from my .htaccess and replacing with
_______________________________________________________________________
# 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
____________________________________________________________________it works fine.
I have manually removed your plugin.
1) What is the reason for this error. When it was working fine with single site install ?
2) Is there a way I can make this working on my multi-site install ?