tedd wrote:

> At 7:42 PM -0400 7/16/08, robert mena wrote:
>>Am I doing something wrong or do I have to start looking to the
>>server's configuration (like mod_deflate)?
> 
> 
> I use this -- it seems to work:
> 
> $file="test.zip";
> header("Content-type: application/octet-stream");
> header("Content-Transfer-Encoding: Binary");
> header("Content-length: ".filesize($file));
> header("Content-disposition: attachment;
> filename=\"".basename($file)."\""); readfile("$file");
> 
> Anyone see a problem with it?

looks good to me - in Roberts case I would check if anything is adding
output _before_ the readfile().  I have just today had such an issue
with a zip-file. 


/Per Jessen, Zürich


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

Reply via email to