FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » ZIP file download
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
ZIP file download [message #175812] Thu, 27 October 2011 10:29 Go to previous message
JustWondering is currently offline  JustWondering
Messages: 9
Registered: April 2011
Karma:
Junior Member
I am trying to write a script to download a zip file. Here's what I
have:

header("Cache-Control: no-store, no-cache");
header("Content-Description: File Transfer");
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename="zipfile.zip");
header("Content-Transfer-Encoding: binary");

$outstream = fopen("php://output",'w');

$file = fopen("myfile.zip","rb");
if ($file) {
while(!feof($file)) {
fwrite($outstream, fread($file, 2048));
}
fclose($file);
}
fclose($outstream);

When I run the script, I get a dialog box asking me to save the file.
The file is saved fine, but I cannot open it from the Windows Explorer
(Windows tells that the compressed file is invalid). 7Zip however has
no problem opening it and extracting the files. Any ideas?
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Simple PHP script - VMS problem
Next Topic: Standard practice: login pages
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Sun Nov 24 22:44:58 GMT 2024

Total time taken to generate the page: 0.03938 seconds