Hi, from the French forum (maybe other forums). First the problem: IE 6 does not like CSS compressed by mod_gzip, so it skips all CSS formatting.
Apache knows that, and supposedly does not compress .css files, but in our case the file is ./css/phpmyadmin.css.php.
Solution: a .htaccess <IfModule mod_gzip.c> mod_gzip_on no </IfModule>
but we don't want to include a .htaccess in our main directory, due to problems on servers that do not allow users to have a .htaccess.
Can we do something better than a FAQ entry?
Marc
Hi there
On Sun, 19 Mar 2006 08:32:38 -0500 Marc Delisle Marc.Delisle@cegepsherbrooke.qc.ca wrote:
from the French forum (maybe other forums). First the problem: IE 6 does not like CSS compressed by mod_gzip, so it skips all CSS formatting.
Apache knows that, and supposedly does not compress .css files, but in our case the file is ./css/phpmyadmin.css.php.
Solution: a .htaccess
<IfModule mod_gzip.c> mod_gzip_on no </IfModule>
but we don't want to include a .htaccess in our main directory, due to problems on servers that do not allow users to have a .htaccess.
Can we do something better than a FAQ entry?
Use only static CSS? But it's long time solution.
Michal Čihař a écrit :
Hi there
On Sun, 19 Mar 2006 08:32:38 -0500 Marc Delisle Marc.Delisle@cegepsherbrooke.qc.ca wrote:
from the French forum (maybe other forums). First the problem: IE 6 does not like CSS compressed by mod_gzip, so it skips all CSS formatting.
Apache knows that, and supposedly does not compress .css files, but in our case the file is ./css/phpmyadmin.css.php.
Solution: a .htaccess
<IfModule mod_gzip.c> mod_gzip_on no </IfModule>
but we don't want to include a .htaccess in our main directory, due to problems on servers that do not allow users to have a .htaccess.
Can we do something better than a FAQ entry?
Use only static CSS? But it's long time solution.
I just noticed that this problem is discussed here: https://sourceforge.net/tracker/index.php?func=detail&aid=1448471&gr...
Marc
Marc Delisle schrieb:
Hi, from the French forum (maybe other forums). First the problem: IE 6 does not like CSS compressed by mod_gzip, so it skips all CSS formatting.
Apache knows that, and supposedly does not compress .css files, but in our case the file is ./css/phpmyadmin.css.php.
Solution: a .htaccess
<IfModule mod_gzip.c> mod_gzip_on no </IfModule>
but we don't want to include a .htaccess in our main directory, due to problems on servers that do not allow users to have a .htaccess.
Can we do something better than a FAQ entry?
is it right that this problem only occurs on https?
Hi
On Wed, 22 Mar 2006 10:05:26 +0100 Sebastian Mendel lists@sebastianmendel.de wrote:
is it right that this problem only occurs on https?
Even if it would be so, I would not call this situation "only"...
Michal Čihař schrieb:
Hi
On Wed, 22 Mar 2006 10:05:26 +0100 Sebastian Mendel lists@sebastianmendel.de wrote:
is it right that this problem only occurs on https?
Even if it would be so, I would not call this situation "only"...
i just want to clarify the 'conditions'
and a simple workaround could be to link the css via http, even if phpMyAdmin is running over https. (if IE7 or other Browsers allow this)
Sebastian Mendel a écrit :
Michal Čihař schrieb:
Hi
On Wed, 22 Mar 2006 10:05:26 +0100 Sebastian Mendel lists@sebastianmendel.de wrote:
is it right that this problem only occurs on https?
Even if it would be so, I would not call this situation "only"...
i just want to clarify the 'conditions'
and a simple workaround could be to link the css via http, even if phpMyAdmin is running over https. (if IE7 or other Browsers allow this)
I'll try today to setup a test server to clarify the conditions.
Marc
Sebastian Mendel a écrit :
Michal Čihař schrieb:
Hi
On Wed, 22 Mar 2006 10:05:26 +0100 Sebastian Mendel lists@sebastianmendel.de wrote:
is it right that this problem only occurs on https?
Even if it would be so, I would not call this situation "only"...
i just want to clarify the 'conditions'
and a simple workaround could be to link the css via http, even if phpMyAdmin is running over https. (if IE7 or other Browsers allow this)
Well I can't reproduce this problem.
Server: Apache 1.3.34, mod_gzip 1.3.26.1a, PHP 5.1.3-RC1. mod_gzip configured to include .html and .php, to exclude .css
Client: IE 6.0.2800.1106.xpsp2.050301-1526 (SP1; Q823353)
Display problems: none.
Marc
Hi Sebastian & list,
Sebastian Mendel schrieb:
and a simple workaround could be to link the css via http, even if phpMyAdmin is running over https. (if IE7 or other Browsers allow this)
Probably, but the webserver could have different vhost setups defined for HTTP and HTTPS. In this case, you workaround will fail badly. :-/
Regards,
AMT