The downloadable tar.gz for PHP-5.0.2 is named .tar.tar rather than .tar.gz
-Sara
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?
Andi
At 10:40 AM 9/24/2004 -0700, Sara Golemon wrote:
The downloadable tar.gz for PHP-5.0.2 is named .tar.tar rather than .tar.gz
-Sara
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