Creating and serving zipped files with php

前端 未结 4 1938
别跟我提以往
别跟我提以往 2020-12-19 14:34

I\'m trying to use the following code to create a zip file from a directory and serve it to the user via an http download:

 // write the file
file_put_conten         


        
相关标签:
4条回答
  • 2020-12-19 14:48

    I had this problem and it turned out the downloaded zip file had a new line inserted at the very beginning.

    Solved by using ob_clean and flush functions

        header("Pragma: public");
        header("Expires: 0");
        header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
        header("Cache-Control: private",false);
        header("Content-Type: application/octet-stream");
        header("Content-Disposition: attachment; filename=".basename($archive_file_name));
        header("Content-Transfer-Encoding: binary");
        header("Content-Length: ".filesize($archive_file_name));
        ob_clean();
        flush();
        echo readfile("$archive_file_name");
    
    0 讨论(0)
  • 2020-12-19 15:03

    As suggested by karim79, I'll put my comment as an answer: what happens if you change the MIME type from application/octet-stream to application/zip?

    Also, I see you're using a command line zip program, but you don't check for success of the zip, and also don't check if the file exists before attempting to send it out to the end users browser. Try hard coding a file name, manually using zip to guarantee a properly formed zip file, and then see if your code will spit it to your browser properly.

    0 讨论(0)
  • 2020-12-19 15:06

    What you're seeing is that the archive utility is not recognizing the zip file as a zip file, and tried to zip up the zip archive itself. The second operation simply unzips the first file created, so never actually opening the file at all. This is due to the zip being corrupted.

    It is possible that the browser somehow mangled the zip file (newline conversions anyone?) during the download process. As mentioned, check the mime type and use the php header() to set the correct MIME type (application/zip).

    0 讨论(0)
  • 2020-12-19 15:10
    1. Re-zipping it every time it is requested is not a good idea. Try doing that only if the ZIP file does not exist already.

    2. If is a volatile file or just a single small file you want to transfer compressed, try using ob_start('ob_gzhandler') instead, simplier, smaller, cleaner. The file is transfered compressed, but it is saved in its original format by the client-side.

    3. Specifying the Content-Length header is needed to allow the downloader to know the end of the file, allowing progress control, detection of corruption of the file and avoiding the hang of the HTTP session (if Connection is in Keep-Alive mode), maybe the lack of this header is the root of the problem.

    0 讨论(0)
提交回复
热议问题