Tested with Firefox, Chrome and IE

Headers:

HTTP/1.1 200 OK
Date: Mon, 20 Apr 2009 17:32:20 GMT
Server: Apache/2.2.8 (Win32) DAV/2 mod_ssl/2.2.8 OpenSSL/0.9.8g mod_autoindex_co
lor PHP/5.2.5
X-Powered-By: PHP/5.2.5
Expires: Sun, 19 Nov 1978 05:00:00 GMT
Last-Modified: Mon, 20 Apr 2009 17:32:22 GMT
Cache-Control: store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Content-Encoding: gzip
Transfer-Encoding: chunked
Content-Type: text/html

It's weird that it's: Content-Encoding: gzip
if it's not gzip'ed content.

Could be related to: #174036: A site is not visible in MSIE 5.5, 6.0 in Windows

CommentFileSizeAuthor
#1 cache.fs_.inc_.patch457 byteskenorb
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

kenorb’s picture

Status: Active » Needs review
FileSize
457 bytes

Patch in attachment.
P.S. Doesn't work after tests, don't apply it.

kenorb’s picture

Status: Needs review » Needs work
simplekid’s picture

Status: Needs work » Needs review

Here is a solution that seems to apply to version 5.x-1.x-dev perhaps it can be used on 6.

On Line 42 of cache.fs.inc:

Change
if ($user->cache > $cache->created) {

to
if (is_object($user) && ($user->cache > $cache->created)) {

kenorb’s picture

Grabby’s picture

I get this with Firefox, but not with IE. Would be a great module if it worked with all browsers!

sebish’s picture

Same error here. Only on FF. I use 3.6 version.

kenorb’s picture

Status: Needs review » Fixed

Committed fix from #3.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.