Questions tagged [mod-deflate]
73 questions
0
votes
1 answer
Apache gzip compression
I have an inherited Apache 2.2.17 server running on Ubuntu that I need to enable compression on. I have ensured the mod is loaded:
apachectl -t -D DUMP_MODULES
Loaded Modules:
...
deflate_module (shared)
headers_module (shared)
setenvif_module…

Naozumi
- 138
- 9
0
votes
2 answers
Server 500 error with mod_deflate in .htaccess
When I enable mod_deflate in .htaccess under Apache 2.2.23, I get a site wide 500 server error.
Here is the code I am using:
# Don't compress certain content under Apache 2.x
SetOutputFilter DEFLATE
…

eComEvo
- 1,011
- 3
- 20
- 32
0
votes
2 answers
How to enable mod_deflate on apache
I've come across some article online to enable mod_deflate to gzip files while sending from the server.
For that, I tried to load the mod_deflate.so module by adding a line on my httpd.conf
LoadModule deflate_module modules/mod_deflate.so
But it…

ptamzz
- 101
- 5
0
votes
3 answers
Apache mod_deflate not found?
I read about how to enable the mod_deflate on my "clean" installation of Apache 2.2.17 on Ubuntu.
I found that I should do this in order to enable:
LoadModule deflate_module /usr/lib/apache2/modules/mod_deflate.so
So I went to my…
Yoyo
0
votes
2 answers
Cannot load mod_deflate
I'm running CentOS 5.6 with cPanel.
I've rebuilt my apache to have deflate enabled. Here is my EasyApache Build Log:
./configure
--enable-deflate
--enable-expires
--enable-headers
--enable-info
…

Moe
- 3
- 1
- 3
0
votes
1 answer
Switch to FastCGI from Apache php support disabled mod_deflate
After i was told by my server providers support staff to swtich to FastCGI from Apache php support, i later found out that mod_deflate stopped working, it was working fine before the switch. My static files were delivered without being gzipped. I…

VicePrez
- 153
- 1
- 4
0
votes
2 answers
apache mod_deflate doesn't work with IE 7
I've set up apache2 to serve gziped files
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css application/x-javascript application/json
BrowserMatch ^Mozilla/4…

jlfenaux
- 303
- 1
- 4
- 9
0
votes
1 answer
Apache mod_deflate enable?
I'm using the follow code in .htaccess. It works nicely in localhost, however in production server i'm having troubles with gzip compression.
AddOutputFilterByType DEFLATE text/css text/html application/x-javascript application/javascript

Pedro Gil
- 103
- 1
- 3
0
votes
2 answers
how do I setup Apache's Content-Encoding Header?
When attempting to validate my site with the W3C validator, it returns the error, "Don't know how to decode Content-Encoding 'none'". Firebug confirms that my server is sending the header, "Content-Encoding: none".
But I can't find any directive in…

Nick
- 4,503
- 29
- 69
- 97
0
votes
1 answer
How do i enable deflate on apache2? debian
I looked at the other answers and those solutions did not help.
I am completely confused how to do this. I know almost nothing about apache nor how to use it and nearly all the article say write this but doesnt tell me where.
So far i have done…
user274
0
votes
0 answers
How can I verify if file uploads are compressed?
I need to upload big files to a server (Debian 4.19, Apache 2.4, PHP) and want to make sure that compression is applied for the transport. Data is compressed from the server to clients but I cannot figure out how to check if also uploaded files are…

chris_cm
- 1
- 1
-1
votes
1 answer
Setting a custom value to the DeflateBufferSize results in 500 internal server error
I'm trying to reset the DeflateBufferSize directive like so in my .htaccess file:
DeflateBufferSize 1024
SetOutputFilter DEFLATE
But the result of each page is then 500 internal server error (this happens even if I set it to its default value of…

Core_dumped
- 103
- 2
-1
votes
1 answer
centos6 / apache2.2 / mod_deflate: Not working
I have a server with Centos6, Apache2.2, mod_deflate, mod_filter etc enabled.. But I dont see any compression. I have tried all combinations of filter and mod commands that is on the internet for mod_deflate. It only works on local machine but not…

Raheel Hasan
- 181
- 1
- 1
- 12