在Windows资源管理器中打开时出现PHP .zip文件下载错误

时间:2014-03-20 09:32:31

标签: php download zip windows-explorer winrar

尝试在Windows资源管理器中打开PHP创建的.zip文件时,我遇到了一个奇怪的错误。

它在WinRar中运行良好。

我正在创建的是一个SDS工作表下载站点,您可以在其中复选所需的PDF文档类型,然后将其压缩。

该过程正常,我没有创建文件的错误。只有在使用Windows资源管理器打开时才会发生错误。

错误消息: " Windows无法打开该文件夹。压缩(压缩)文件夹'文件名'无效。"在Windows资源管理器中打开错误。"

如果您想自己测试一下,该网站是http://www.premiere-produkter.no/pp/datablad/index.php

下面是代码:

<?php
    $error = "";        //error holder
    if(isset($_POST['createpdf'])){
        $post = $_POST;     
        $file_folder = "files/";    // folder to load files
        if(extension_loaded('zip')){    // Checking ZIP extension is available
            if(isset($post['files']) and count($post['files']) > 0){    // Checking files are selected
                $zip = new ZipArchive();            // Load zip library 
                $zip_name = time().".zip";          // Zip name
                if($zip->open($zip_name, ZIPARCHIVE::CREATE)!==TRUE){       // Opening zip file to load files
                    $error .=  "* Sorry ZIP creation failed at this time<br/>";
                }
                foreach($post['files'] as $file){               
                    $zip->addFile($file_folder.$file);          // Adding files into zip
                }
                $zip->close();
                if(file_exists($zip_name)){
                    // push to download the zip
                    header('Content-type: application/zip');
                    header('Content-Disposition: attachment; filename="'.$zip_name.'"');
                    readfile($zip_name);
                    // remove zip file is exists in temp path
                    unlink($zip_name);
                }

            }else
                $error .= "* Please select file to zip <br/>";
        }else
            $error .= "* You dont have ZIP extension<br/>";
    }
?>

HTML:

    <body>    
    <div id="container">
    <div id="meny">
    <h2><a href="http://www.premiere-produkter.no"><img src="files/pp.png">Gå til Premiere Produkter sine sider ved å klikke her </a> </h2>

    <h1>last ned datablad / Download SDS sheets</h1>
    <form name="zips" method="post">
    <?php if(!empty($error)) { ?>
    <p style=" border:#C10000 1px solid; background-color:#FFA8A8; color:#B00000;padding:8px; margin:0 auto 10px;"><?php echo $error; ?></p>
    <?php } ?>
    <h5>
    <p>Vennligst Marker de databladene du ønsker å få tak i, og så trykk på "last ned til zip" etterpå for å laste ned en komprimert zip fil der alle databladene ligger i. </p>
    <p>Du kan også se på pdf filene ved å trykke på navnet.</p> 
    <p>Sliter du med å finne produktet? Bruk søkefeltet til å søke etter enten navn eller produktnummer.
    </h5>
    <table class="tablesorter" id="tblSearch" width="600" border="1" align="center" cellpadding="10" cellspacing="0" style="border-collapse:collapse; border:#ccc 1px solid; background:#fff;">
      <thead>
      <tr>
        <th  align="center"><span style="font-size:13px;">Marker de du vil laste ned</span></th>
        <th align="center">File Type</th>
        <th>Fil Navn</th>
        <th>Språk</th>
        <th>Faresymboler</th>
        <th>Art.Nr</th>
      </tr>
      </thead>

        <tr>
        <td align="center"><input type="checkbox" name="files[]" value="11001-11081.pdf" /></td>
        <td align="center"><img src="files/pdf.png" title="pdf" width="16" height="16" /></td>
        <td><a href="files/11001-11081.pdf">Savona D2</a></td>
        <td align="center" alt="nok"><span style="font-size:0px;">no</span><img src="norge.jpg" alt="Nor" title="nor" width="20" height="20" /></td>
        <td align="center"><img src="/images/faresymboler/irriterende.png" title="pdf" width="20" height="20" /></td>
        <td>11001-11081</td>
      </tr>
    </table>

<div id="buttons">
<div class="b1">
<input type="submit" value="Last ned som ZIP fil" style="border:0px; margin:10px 0; 

background-color:#800040; color:#FFF; padding:7px; width:234px; cursor:pointer; font-

weight:bold; border-radius:0px;" name="createpdf">
</div>
<div class="b1">
<input type="reset" value="Reset" style="border:0px; background-color:#D3D3D3; color:#000; 

font-weight:bold; width:235px; padding:10px; cursor:pointer; border-radius:0px;" 

name="reset">
</div>

2 个答案:

答案 0 :(得分:9)

添加

ob_clean();
ob_end_flush();

header('Content-type: application/zip');
header('Content-Disposition: attachment; filename="'.$zip_name.'"');
readfile($zip_name);
// remove zip file is exists in temp path
unlink($zip_name);

注意:在将zip内容发送到浏览器

之前,添加此代码以清除所有html输出

答案 1 :(得分:4)

我会详细说明我的评论。您的ZIP文件包含有效的ZIP内容以及最后的完整HTML文档。我并不是说你最后添加了正确压缩的HTML - 它只是附加:

ZIP+HTML

没有办法说明你所分享的代码是如何发生这种情况的,但是一旦你意识到它就应该很明显。


教育猜测 - 我想你有这个:

if(file_exists($zip_name)){
    // push to download the zip
    header('Content-type: application/zip');
    header('Content-Disposition: attachment; filename="'.$zip_name.'"');
    readfile($zip_name);
    // remove zip file is exists in temp path
    unlink($zip_name);
}
?>
<!DOCTYPE html>
<head>
...

您可以在运行不需要的代码之前完成脚本:

unlink($zip_name);
exit;

...或使用if()构造不运行它:

if(file_exists($zip_name)){
    // ...
}else{ ?>
    <!DOCTYPE html>
    <head>
<? }