Xantiva
Sehr aktives Mitglied
Bin nach einem Serverwechsel gerade darüber gestolpert ...
Der Shop zeigt nur noch die "500 Internal Server Error" Seite und im error_log finde ich:
Verursacher ist der Abschnitt in der .htaccess:
Es wird nur auf mod_filter geprüft, aber dann DEFLATE verwendet!
Füge ich noch zusätzlich die Prüfung auf mod_deflate hinzu, dann ist der Shop lauffähig, nur wird halt nicht komprimiert:
Der Shop zeigt nur noch die "500 Internal Server Error" Seite und im error_log finde ich:
Code:
Unknown filter provider DEFLATE
Verursacher ist der Abschnitt in der .htaccess:
Code:
<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE \
"application/atom+xml" \
"application/javascript" \
"application/json" \
"application/ld+json" \
"application/manifest+json" \
"application/rdf+xml" \
"application/rss+xml" \
"application/schema+json" \
"application/vnd.geo+json" \
"application/vnd.ms-fontobject" \
"application/x-font-ttf" \
"application/x-javascript" \
"application/x-web-app-manifest+json" \
"application/xhtml+xml" \
"application/xml" \
"font/eot" \
"font/opentype" \
"image/bmp" \
"image/svg+xml" \
"image/vnd.microsoft.icon" \
"image/x-icon" \
"text/cache-manifest" \
"text/css" \
"text/html" \
"text/javascript" \
"text/plain" \
"text/vcard" \
"text/vnd.rim.location.xloc" \
"text/vtt" \
"text/x-component" \
"text/x-cross-domain-policy" \
"text/xml"
<IfModule mod_mime.c>
AddEncoding gzip svgz
</IfModule>
</IfModule>
Es wird nur auf mod_filter geprüft, aber dann DEFLATE verwendet!
Füge ich noch zusätzlich die Prüfung auf mod_deflate hinzu, dann ist der Shop lauffähig, nur wird halt nicht komprimiert:
Code:
<IfModule mod_filter.c>
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE \
"application/atom+xml" \
"application/javascript" \
"application/json" \
"application/ld+json" \
"application/manifest+json" \
"application/rdf+xml" \
"application/rss+xml" \
"application/schema+json" \
"application/vnd.geo+json" \
"application/vnd.ms-fontobject" \
"application/x-font-ttf" \
"application/x-javascript" \
"application/x-web-app-manifest+json" \
"application/xhtml+xml" \
"application/xml" \
"font/eot" \
"font/opentype" \
"image/bmp" \
"image/svg+xml" \
"image/vnd.microsoft.icon" \
"image/x-icon" \
"text/cache-manifest" \
"text/css" \
"text/html" \
"text/javascript" \
"text/plain" \
"text/vcard" \
"text/vnd.rim.location.xloc" \
"text/vtt" \
"text/x-component" \
"text/x-cross-domain-policy" \
"text/xml"
</IfModule>
<IfModule mod_mime.c>
AddEncoding gzip svgz
</IfModule>
</IfModule>
Zuletzt bearbeitet: