DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=43939>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=43939 Summary: mod_deflate is causing SSI's which include "default" URLs to fail Product: Apache httpd-2 Version: 2.2.4 Platform: Other OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: mod_deflate AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] It appears that mod_deflate is causing virtual includes which rely on "default" URLs to fail. An example is this: <!--#include virtual="/test/index.html"--> - Works as expected <!--#include virtual="/test/"--> - Entire page doesn't load (suspected apache crash) Nothing is logged in the apache error or access logs when this event occurs. This problem also effects the php virtual() function in the exact same way. Also, multiviews is not enabled. If Deflate is disabled on the including file type (in this case .shtml) the include works fine. Here's my exact mod_deflate for reference: # # Required modules: mod_deflate # # Please see the documentation at # <URL:http://httpd.apache.org/docs/2.2/mod/mod_deflate.html> # for further details before you try to setup deflate module. # <Location /> # Insert filter SetOutputFilter DEFLATE # Netscape 4.x has some problems... BrowserMatch ^Mozilla/4 gzip-only-text/html # Netscape 4.06-4.08 have some more problems BrowserMatch ^Mozilla/4\.0[678] no-gzip # MSIE masquerades as Netscape, but it is fine BrowserMatch \bMSIE !no-gzip !gzip-only-text/html # Don't compress images and other uncompressible content SetEnvIfNoCase Request_URI \ \.(?:gif|jpe?g|png|rar|zip|exe|mov)$ no-gzip dont-vary # Make sure proxies don't deliver the wrong content Header append Vary User-Agent env=!dont-vary </Location> -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
