Hi

I have problem with downloading any file from my site using IE 5.5 and 
HTTPS protocol. My php script works fine with Netscape 6.2 and 
HTTP/HTTPS protocols and with IE 5.5 but only with HTTP protocol.
I can't find problem.
I use Apache 1.3.20, PHP 4.0.6, mod_ssl 2.8.4 and OpenSSL 0.9.6 on 
RedHat 7.1 platform.
My download php script is so simple, but I present it below:

<?

header( 'Content-Encoding: gzip');
header( 'Content-Type: application/x-gzip' );
header( 'Content-Disposition: attachment; filename=file.txt.gz' );

readfile( '/tmp/file.txt.gz' );
exit();

?>

As I said it works fine with Netscape 6.2 for both HTTP and HTTPS and 
only with IE 5.5 for HTTP. Is there any expert how can tell me what is 
it wrong or what I have to do to use IE 5.5 and HTTPS protocol for 
downloading gziped files (or any other files) from my site. All pages in 
my site work fine except this simple one.

Thank You very much for any help.

Krzysiek


----------------------------------------------------------------------
Wejdz do gry! Pilkarska Ruletka! >>> http://ruletka.interia.pl/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to