Hi,
I'm using readfile to send a file. The code is:
header("Content-length: $size");
header("Content-type: $type");
header("Content-disposition: attachment;filename=$filename");
readfile($filename);
It works for very small files, but for larger files it seems to send the first 600 bytes and then hang... I tried with both IE and Netscape and have the same problem. I'm using Apache 1.3.14 and PHP/4.0.4pl1 on Win2000.
Any hints appreciated. Thanks.
--Matias