Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:13028 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 61540 invoked by uid 1010); 27 Sep 2004 20:15:48 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 61510 invoked from network); 27 Sep 2004 20:15:48 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by pb1.pair.com with SMTP; 27 Sep 2004 20:15:48 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.10) with ESMTP id i8RKFmGT011404 for ; Mon, 27 Sep 2004 16:15:48 -0400 Received: from radish.cambridge.redhat.com (radish.cambridge.redhat.com [172.16.18.90]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i8RKFlr23730 for ; Mon, 27 Sep 2004 16:15:47 -0400 Received: from radish.cambridge.redhat.com (localhost.localdomain [127.0.0.1]) by radish.cambridge.redhat.com (8.12.10/8.12.7) with ESMTP id i8RKFkNE016079 for ; Mon, 27 Sep 2004 21:15:46 +0100 Received: (from jorton@localhost) by radish.cambridge.redhat.com (8.12.10/8.12.10/Submit) id i8RKFk6s016078 for internals@lists.php.net; Mon, 27 Sep 2004 21:15:46 +0100 Date: Mon, 27 Sep 2004 21:15:46 +0100 To: internals@lists.php.net Message-ID: <20040927201546.GA16062@redhat.com> Mail-Followup-To: internals@lists.php.net References: <20040924174044.22861.qmail@pb1.pair.com> <5.1.0.14.2.20040924104347.02e06570@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <5.1.0.14.2.20040924104347.02e06570@localhost> User-Agent: Mutt/1.4.1i Subject: Re: [PHP-DEV] Source tarball for PHP 5.0.2 From: jorton@redhat.com (Joe Orton) On Fri, Sep 24, 2004 at 10:44:34AM -0700, Andi Gutmans wrote: > This doesn't have anything to do with the tar.gz itself. > It seems that with MSIE something screws up (for both 5.0.2and 4.3.9). > Firefox handles it correctly. Do we have a mime types problem? The servers should be configured to *not* send a Content-Encoding header for tarballs, MSIE screws this up: $ HEAD http://us4.php.net/distributions/php-5.0.2.tar.gz | grep Content- Content-Encoding: x-gzip Content-Length: 5628958 Content-Type: application/x-tar adding "RemoveEncoding .gz" into distributions/.htaccess if there is one is a good fix for Apache. (the default config was broken like this in releases older than 2.0.48) joe