You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2008/02/20 19:46:43 UTC

DO NOT REPLY [Bug 44457] New: - mod_deflate RemoveOutputFilter DEFLATE overrides all subdirectory configs

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=44457>.
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=44457

           Summary: mod_deflate RemoveOutputFilter DEFLATE overrides all
                    subdirectory configs
           Product: Apache httpd-2
           Version: 2.2.3
          Platform: Other
               URL: http://www.t1shopper.com/tools/calculate/
        OS/Version: other
            Status: NEW
          Severity: normal
          Priority: P4
         Component: mod_deflate
        AssignedTo: bugs@httpd.apache.org
        ReportedBy: gmillikan@t1shopper.com
                CC: gmillikan@t1shopper.com


<Directory /home/t1shopper/www/tools>
    RemoveOutputFilter DEFLATE
    SetEnv no-gzip
</Directory>
#The below child sub-directory should override the above parent directive but it
does not.
<Directory /home/t1shopper/www/tools/calculate>
   SetOutputFilter DEFLATE
</Directory>

I apologize in advance if this is simple user error and I need to just RTFM more.

-- 
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: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org


DO NOT REPLY [Bug 44457] - mod_deflate RemoveOutputFilter DEFLATE overrides all subdirectory configs

Posted by bu...@apache.org.
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=44457>.
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=44457





------- Additional Comments From gmillikan@t1shopper.com  2008-02-20 14:59 -------
Yes, I agree, that's user error.  I've fined myself $50 for reporting a bug that
was not.

PayPal Transaction ID:  8R273354D00210926 
Item Price:  $50.00 USD 
Total:  $50.00 USD 
Order Description:  The Apache Software Foundation 
Buyer:  T1 Shopper, Inc. 

Config should have been:

<Directory /home/t1shopper/www/tools>
    SetEnv no-gzip
</Directory>

<Directory /home/t1shopper/www/tools/calculate>
    UnsetEnv no-gzip
</Directory>

-- 
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: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org


DO NOT REPLY [Bug 44457] - mod_deflate RemoveOutputFilter DEFLATE overrides all subdirectory configs

Posted by bu...@apache.org.
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=44457>.
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=44457


rpluem@apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID




------- Additional Comments From rpluem@apache.org  2008-02-20 12:37 -------
Your configuration is confusing. RemoveOutputFilter DEFLATE would not remove the
DEFLATE filter, but any filter that was added with AddOutputFilter to filter all
files whose extension is DEFLATE. The DEFLATE filter is inserted in the
subdirectory but by setting SetEnv no-gzip in the parent directory you
effectively disable it in the subdirectory.

-- 
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: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org