<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to support-requests</title><link>https://sourceforge.net/p/mod-gzip/support-requests/</link><description>Recent changes to support-requests</description><atom:link href="https://sourceforge.net/p/mod-gzip/support-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Wed, 15 Dec 2004 14:41:21 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/mod-gzip/support-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>modGZIP Varying Browser Support</title><link>https://sourceforge.net/p/mod-gzip/support-requests/20/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I have recently discovered that certain versions of IE do &lt;br /&gt;
not support modGzip encoded web content.&lt;/p&gt;
&lt;p&gt;E.g. IE 5.0 (SP1-3), IE5.5 (SP1) and IE6.0 (no service &lt;br /&gt;
packs).&lt;/p&gt;
&lt;p&gt;Does anyone have a complete list of supported browsers &lt;br /&gt;
and specific issues relating to modGzip on those that &lt;br /&gt;
dont?&lt;/p&gt;
&lt;p&gt;Also is there anyway of configuring modGzip to get &lt;br /&gt;
around these problems?&lt;/p&gt;
&lt;p&gt;We have a broad customer base and need to support &lt;br /&gt;
IE5.0+.&lt;/p&gt;
&lt;p&gt;I am using modGzip under Apache v1.3.&lt;br /&gt;
Cheers&lt;br /&gt;
Mark&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 15 Dec 2004 14:41:21 -0000</pubDate><guid>https://sourceforge.net752a7213a06763c95978e267420093fcbabe839e</guid></item><item><title>Dechunk doesn't work with Client-Transfer-Encoding</title><link>https://sourceforge.net/p/mod-gzip/support-requests/19/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;mod_gzip stopped compression ColdFusion output when I&lt;br /&gt;
upgraded from ColdFusion 4.5.1 to ColdFusion MX 6.1&lt;br /&gt;
(the later uses JRun as its engine).&lt;/p&gt;
&lt;p&gt;This configuration works A-1:&lt;br /&gt;
Apache 1.3.31, mod_gzip 1.3.26.1a, ColdFusion 4.5.1&lt;/p&gt;
&lt;p&gt;This one doesn't work with the same ColdFusion files:&lt;br /&gt;
Apache 1.3.31, mod_gzip 1.3.26.1a, ColdFusion MX 6.1&lt;/p&gt;
&lt;p&gt;They both use the exact same httpd.conf and mime.types&lt;br /&gt;
files.&lt;/p&gt;
&lt;p&gt;After a couple of hours of searching the web and&lt;br /&gt;
testing various Apache/mod_gzip configurations, I&lt;br /&gt;
concluded the problem was caused by the&lt;br /&gt;
"Client-Transfer-Encoding" header, which prevents&lt;br /&gt;
mod_gzip from processing the output.  As I understand&lt;br /&gt;
it, mod_gzip_dechunk expects to find&lt;br /&gt;
"Transfer-Encoding: chunked" and not&lt;br /&gt;
"Client-Transfer-Encoding: chunked" in order to removed&lt;br /&gt;
the header, agglomerate the chunks and compress the output.&lt;/p&gt;
&lt;p&gt;Here are the two traces:&lt;br /&gt;
=== response for setup working correctly ===&lt;br /&gt;
[ 15] HTTP/1.0 200 OK&lt;br /&gt;
[ 17] Connection: close&lt;br /&gt;
[ 35] Date: Wed, 11 Aug 2004 06:13:25 GMT&lt;br /&gt;
[ 48] Server: Apache/1.3.31 (Win32) mod_gzip/1.3.26.1a&lt;br /&gt;
[  7] Vary: *&lt;br /&gt;
[ 22] Content-Encoding: gzip&lt;br /&gt;
[ 20] Content-Length: 2458&lt;br /&gt;
[ 23] Content-Type: text/html&lt;br /&gt;
[ 30] Page-Completion-Status: Normal&lt;br /&gt;
[ 30] Page-Completion-Status: Normal&lt;br /&gt;
[ 72] Set-Cookie: CFID=220493; expires=Sun, 27-Sep-2037&lt;br /&gt;
00:00:00 GMT; path=/; &lt;br /&gt;
[ 77] Set-Cookie: CFTOKEN=39897249; expires=Sun,&lt;br /&gt;
27-Sep-2037 00:00:00 GMT; path=/; &lt;br /&gt;
Client-Date: Wed, 11 Aug 2004 06:14:19 GMT&lt;br /&gt;
Client-Response-Num: 1&lt;/p&gt;
&lt;p&gt;=== response for setup not compressing outpout ===&lt;br /&gt;
[ 15] HTTP/1.0 200 OK&lt;br /&gt;
[ 17] Connection: close&lt;br /&gt;
[ 35] Date: Wed, 11 Aug 2004 06:51:36 GMT&lt;br /&gt;
[ 57] Server: Apache/1.3.31 (Win32) JRun/4.0&lt;br /&gt;
mod_gzip/1.3.26.1a&lt;br /&gt;
[ 23] Content-Language: en-US&lt;br /&gt;
[ 38] Content-Type: text/html; charset=UTF-8&lt;br /&gt;
[ 65] Set-Cookie: CFID=221;expires=Fri, 04-Aug-2034&lt;br /&gt;
06:51:03 GMT;path=/&lt;br /&gt;
[ 73] Set-Cookie: CFTOKEN=55172318;expires=Fri,&lt;br /&gt;
04-Aug-2034 06:51:03 GMT;path=/&lt;br /&gt;
Client-Date: Wed, 11 Aug 2004 06:51:37 GMT&lt;br /&gt;
Client-Response-Num: 1&lt;br /&gt;
Client-Transfer-Encoding: chunked&lt;/p&gt;
&lt;p&gt;Is there a way to configure mod_gzip to process output&lt;br /&gt;
from the second setup correctly, or will this need to&lt;br /&gt;
be corrected in the source code for a future release? &lt;br /&gt;
Any other alternative I might consider?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;br /&gt;
Giuseppe Fortino&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Giuseppe Fortino</dc:creator><pubDate>Wed, 11 Aug 2004 07:06:08 -0000</pubDate><guid>https://sourceforge.net00dce1dcc897b643b7f394e058413f6107a1aa2f</guid></item><item><title>Calling a function only once when the module get loaded</title><link>https://sourceforge.net/p/mod-gzip/support-requests/18/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I want to call my function when the module gets loaded.&lt;br /&gt;
I called that fuction from mod_gzip_init, but it is getting &lt;br /&gt;
called twice.&lt;br /&gt;
Please let me know how can I accomplish this?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 03 Mar 2004 07:27:08 -0000</pubDate><guid>https://sourceforge.net44bf7e0d0408fd6e3df72e7fc55c004e9771f283</guid></item><item><title>how can I log error only ?</title><link>https://sourceforge.net/p/mod-gzip/support-requests/17/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hello, first Id like too thank you for this great module ;-)&lt;/p&gt;
&lt;p&gt;Then, I also have a question.&lt;br /&gt;
Due to a great usage of my http server (apache 1.3.27) &lt;br /&gt;
my log files explodes, they are growing too fast and too &lt;br /&gt;
much. So Id like to know how can I decrease those by &lt;br /&gt;
keeping only error (mod_gzip error).&lt;/p&gt;
&lt;p&gt;Here is my mod_gzip log config :&lt;/p&gt;
&lt;p&gt;LogFormat      "%h %l %u %t \"%V %r\" %&amp;lt;s %b &lt;br /&gt;
mod_gzip: %{mod_gzip_result}n In:%&lt;br /&gt;
{mod_gzip_input_size}n -&amp;lt; Out:%&lt;br /&gt;
{mod_gzip_output_size}n = %&lt;br /&gt;
{mod_gzip_compression_ratio}n pct." &lt;br /&gt;
common_with_mod_gzip_info2&lt;/p&gt;
&lt;p&gt;CustomLog       /var/apache/log/mod_gzip.log &lt;br /&gt;
common_with_mod_gzip_info2&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Mon, 26 Jan 2004 11:31:09 -0000</pubDate><guid>https://sourceforge.neteb2ac663bab0b2e2088b7b9584e7ec0d8f7703a9</guid></item><item><title>Windows: How To ?</title><link>https://sourceforge.net/p/mod-gzip/support-requests/16/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;OK, im using windows xp, apache 1.3.28 and latest gzip &lt;br /&gt;
(i have both the .so and .dll)&lt;br /&gt;
How do i install as entering the line LoadModule .... &lt;br /&gt;
results in 'cannot load module mod_gzip'&lt;br /&gt;
I dont and am not able to get axps for windows (far as i &lt;br /&gt;
know) and i cant figure out anyway to do this&lt;/p&gt;
&lt;p&gt;I would be very grateful if anyone can help me with the &lt;br /&gt;
install, ta&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 10 Oct 2003 05:21:22 -0000</pubDate><guid>https://sourceforge.netccd65659f2e85c51799dc326359eecd27c8514f2</guid></item><item><title>How is the module usable in the context of broken clients?</title><link>https://sourceforge.net/p/mod-gzip/support-requests/15/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I have read about some problems about the &lt;br /&gt;
compression handling by browsers in the &lt;br /&gt;
document &amp;amp;quot;http://www.schroepl.net/projekte/mod_gzip/&lt;br /&gt;
browser.htm&amp;amp;quot;.&lt;br /&gt;
I wonder if the modules &amp;amp;quot;gzip&amp;amp;quot; or &amp;amp;quot;deflate&amp;amp;quot; can be used &lt;br /&gt;
in this context. How much work and configuration must &lt;br /&gt;
be done to work around the known errors?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Markus Elfring</dc:creator><pubDate>Tue, 05 Aug 2003 10:33:50 -0000</pubDate><guid>https://sourceforge.net7a7ea239f3f55d9b708863ef4bb270ea88115095</guid></item><item><title>Using mod_gzip with Apache 2.x? (was: install?)</title><link>https://sourceforge.net/p/mod-gzip/support-requests/14/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Can mod_zip be installed on apache 2.0.45&amp;amp;amp;#65311;&lt;br /&gt;
Or it just be installed on apache 1.3.26?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 31 Jul 2003 20:22:54 -0000</pubDate><guid>https://sourceforge.net631becec0232b2ee0f25077ba4939371335eb218</guid></item><item><title>Compiling problem: &amp;quot;No rule to make target `mod_gzip.a'&amp;quot;</title><link>https://sourceforge.net/p/mod-gzip/support-requests/13/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Can't install.&lt;br /&gt;
Static compling:&lt;br /&gt;
$ ./configure \
&amp;amp;gt; &amp;amp;quot;--prefix=/opt/apache&amp;amp;quot; \
&amp;amp;gt; --activate-module=src/modules/gzip/mod_gzip.a \
&amp;amp;gt;&lt;br /&gt;
Configuring for Apache, Version 1.3.27&lt;br /&gt;
+ using installation path layout: Apache (config.layout)&lt;br /&gt;
+ activated gzip module (modules/gzip/mod_gzip.a)&lt;br /&gt;
Creating Makefile&lt;br /&gt;
Creating Configuration.apaci in src&lt;br /&gt;
Creating Makefile in src&lt;br /&gt;
+ configured for Linux platform&lt;br /&gt;
+ setting C compiler to gcc&lt;br /&gt;
+ setting C pre-processor to gcc -E&lt;br /&gt;
+ checking for system header files&lt;br /&gt;
+ adding selected modules&lt;br /&gt;
+ using builtin Expat&lt;br /&gt;
+ checking sizeof various data types&lt;br /&gt;
+ doing sanity check on compiler and options&lt;br /&gt;
Creating Makefile in src/support&lt;br /&gt;
Creating Makefile in src/regex&lt;br /&gt;
Creating Makefile in src/os/unix&lt;br /&gt;
Creating Makefile in src/ap&lt;br /&gt;
Creating Makefile in src/main&lt;br /&gt;
Creating Makefile in src/lib/expat-lite&lt;br /&gt;
Creating Makefile in src/modules/standard&lt;br /&gt;
Creating Makefile in src/modules/gzip&lt;br /&gt;
$ make&lt;br /&gt;
===&amp;amp;gt; src&lt;br /&gt;
make[1]: Entering directory `/usr/local/src/apache_1.3.&lt;br /&gt;
27'&lt;br /&gt;
make[2]: Entering directory `/usr/local/src/apache_1.3.&lt;br /&gt;
27/src'&lt;br /&gt;
===&amp;amp;gt; src/regex&lt;br /&gt;
make[3]: Nothing to be done for `all'.&lt;br /&gt;
&amp;amp;lt;=== src/regex&lt;br /&gt;
===&amp;amp;gt; src/os/unix&lt;br /&gt;
make[3]: Nothing to be done for `all'.&lt;br /&gt;
&amp;amp;lt;=== src/os/unix&lt;br /&gt;
===&amp;amp;gt; src/ap&lt;br /&gt;
make[3]: Nothing to be done for `all'.&lt;br /&gt;
&amp;amp;lt;=== src/ap&lt;br /&gt;
===&amp;amp;gt; src/main&lt;br /&gt;
make[3]: Nothing to be done for `all'.&lt;br /&gt;
&amp;amp;lt;=== src/main&lt;br /&gt;
===&amp;amp;gt; src/lib&lt;br /&gt;
===&amp;amp;gt; src/lib/expat-lite&lt;br /&gt;
make[4]: Nothing to be done for `all'.&lt;br /&gt;
&amp;amp;lt;=== src/lib/expat-lite&lt;br /&gt;
&amp;amp;lt;=== src/lib&lt;br /&gt;
===&amp;amp;gt; src/modules&lt;br /&gt;
===&amp;amp;gt; src/modules/standard&lt;br /&gt;
make[4]: Nothing to be done for `all'.&lt;br /&gt;
&amp;amp;lt;=== src/modules/standard&lt;br /&gt;
===&amp;amp;gt; src/modules/gzip&lt;br /&gt;
Makefile:108: warning: overriding commands for target &lt;br /&gt;
`libgzip.a'&lt;br /&gt;
Makefile:61: warning: ignoring old commands for target &lt;br /&gt;
`libgzip.a'&lt;br /&gt;
Makefile:132: warning: overriding commands for target `.&lt;br /&gt;
c.o'&lt;br /&gt;
Makefile:68: warning: ignoring old commands for target `.&lt;br /&gt;
c.o'&lt;br /&gt;
Makefile:138: warning: overriding commands for target &lt;br /&gt;
`clean'&lt;br /&gt;
Makefile:75: warning: ignoring old commands for target &lt;br /&gt;
`clean'&lt;br /&gt;
Makefile:141: warning: overriding commands for target &lt;br /&gt;
`distclean'&lt;br /&gt;
Makefile:78: warning: ignoring old commands for target &lt;br /&gt;
`distclean'&lt;br /&gt;
Makefile:147: warning: overriding commands for target &lt;br /&gt;
`depend'&lt;br /&gt;
Makefile:82: warning: ignoring old commands for target &lt;br /&gt;
`depend'&lt;br /&gt;
make[4]: *** No rule to make target `mod_gzip.a', &lt;br /&gt;
needed by `libgzip.a'.  Stop.&lt;br /&gt;
make[3]: *** [all] Error 1&lt;br /&gt;
make[2]: *** [subdirs] Error 1&lt;br /&gt;
make[2]: Leaving directory `/usr/local/src/apache_1.3.&lt;br /&gt;
27/src'&lt;br /&gt;
make[1]: *** [build-std] Error 2&lt;br /&gt;
make[1]: Leaving directory `/usr/local/src/apache_1.3.&lt;br /&gt;
27'&lt;br /&gt;
make: *** [build] Error 2&lt;br /&gt;
$&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Artem Ryabov</dc:creator><pubDate>Mon, 09 Jun 2003 10:16:03 -0000</pubDate><guid>https://sourceforge.net73d264b40afd9843bfa9aedd0b5266386c9b1d72</guid></item><item><title>Memory could not be &amp;quot;read&amp;quot; problem</title><link>https://sourceforge.net/p/mod-gzip/support-requests/12/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I've installed mod_gzip 1.3.26.1a on my IBM HTTP server &lt;br /&gt;
(apache 1.3.19) running on Win2000 Server. &lt;br /&gt;
If I try to get a html page from web server, OS shows &lt;br /&gt;
me the message box:&lt;br /&gt;
Apache.exe - Application Error&lt;br /&gt;
The instruction at &amp;amp;quot;0x1000efad&amp;amp;quot; referenced memory &lt;br /&gt;
at &amp;amp;quot;0x00000ee8&amp;amp;quot;. The memory could not be &amp;amp;quot;read&amp;amp;quot;.&lt;/p&gt;
&lt;p&gt;I've try to get previous version of mod_gzip (1.3.19 - is &lt;br /&gt;
it problem, that I use apache 1.3.19 and mod_gzip &lt;br /&gt;
1.3.26 ???) but on your download section all of the &lt;br /&gt;
previous ApacheModuleGzip.dll.zip files pointing to the &lt;br /&gt;
same dll file (1.3.26.1a).&lt;/p&gt;
&lt;p&gt;Could you help me ?&lt;br /&gt;
Thanx a lot&lt;/p&gt;
&lt;p&gt;Robert&lt;br /&gt;
robert.hlinka@quick.cz&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 05 Jun 2003 12:17:25 -0000</pubDate><guid>https://sourceforge.net7ce8888fddd9414f6dad0761b20362c03ffe7098</guid></item><item><title>mod_gzip pages not caching!</title><link>https://sourceforge.net/p/mod-gzip/support-requests/11/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I've installed mod_gzip 1.3.26.1a on the server. Ever &lt;br /&gt;
since then I've been having the following problems.&lt;/p&gt;
&lt;p&gt;1) On Internet Explorer, the web pages do not cache at &lt;br /&gt;
all. It's hard to tell on broadband connections, but on &lt;br /&gt;
dial up it's horrendous! The pages just don't cache!&lt;/p&gt;
&lt;p&gt;2) Also, the images, when I right click to save as, it &lt;br /&gt;
shows up as a bitmap image for all images! &lt;br /&gt;
Including .jpg, .gif, etc. You can view this at the &lt;br /&gt;
following website:&lt;/p&gt;
&lt;p&gt;www.tunercarz.com, right click on any of the graphics &lt;br /&gt;
and it wants to save as a bitmap, then when you try to &lt;br /&gt;
open, says it's not a valid bitmap file.&lt;/p&gt;
&lt;p&gt;This is happening will all sites on the server! When I set &lt;br /&gt;
the httpd.conf file to exclude mod_gzip, everythign &lt;br /&gt;
works perfectly!! Please help!&lt;/p&gt;
&lt;p&gt;E-mail me at rob@pc-craft.com&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 29 May 2003 07:37:28 -0000</pubDate><guid>https://sourceforge.net9412c3e920609f06e61c230dc08f9fa678a7101e</guid></item></channel></rss>