https://issues.apache.org/bugzilla/show_bug.cgi?id=54958
Bug ID: 54958
Summary: mod_deflate + mod_mime with SSI gives mixed compressed
and uncompressed output
Product: Apache httpd-2
Version: 2.2.22
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mod_deflate
Assignee: [email protected]
Reporter: [email protected]
Classification: Unclassified
Similar to bug 43939, having mod_deflate and mod_mime cooperating can give
broken output.
Working version:
test1.html containing:
test1-before
<!--#include virtual="test2.html"-->
test1-after
test2.html containing:
test2
Result:
<gzip compressed>test1-before
test2
test1-after</gzip>
Malfunctioning version, only change is the renaming of test2.html to
test2.html.utf8:
test1.html containing:
test1-before
<!--#include virtual="test2.html"-->
test1-after
test2.html.utf8 containing:
test2
Result (note the wrong order and the mix of compressed and not):
test2
<gzip compressed>test1-before
test1-after</gzip>
The same problem shows up when doing includes with language-dependent
extensions, like test2.html.en and test2.html.sv and then doing include on
test2.html .
Configuration data:
AddType text/html .html
AddOutputFilter INCLUDES .html
AddOutputFilterByType DEFLATE text/html
AddCharset UTF-8 .utf8
Tested on Debian7/Wheezy AMD64, apache 2.2.22-13 with prefork MPM.
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]