This is what I've got at the moment:
$chunksize = 1024*4;
$h = fopen($file, 'rb');
set_time_limit(600);
while(!feof($h)){
echo fread($h, $chunksize);
flush();
}
fclose($h);
I've tried increasing the chunk size, I've tried resetting the timeout with every iteration, I've tried setting the timeout to zero (it was originally 5min), I even tried putting the flush() outside the loop to let its own buffer take care of it, and every single time the download dies at exactly 5 minutes in. Sometimes it's 50.2MB, sometimes it's 54.8 or anything in between, so I know it's not the file size. php_info() says the maximum time is 30seconds, so somehow I am able to increase it to 300 but that's it.
Is there something in IIS (server 2003) that could be overriding it?