0

我创建了一个 PHP 页面,允许用户在单击此链接时下载文件:

<a href="download_pdf.php?pubid=<?php echo $row_rsPublications['pubID']; ?>&amp;file=<?php echo $row_rsPublications['file']; ?>">Download File</a>

我还创建了链接指向的下载页面:

<?php 

 if(isset($_GET['file'])) {

    $fileID = $_GET['pubid'];
    $filename= ($_GET['file']);
    $path = "admin/pubfiles/";
    $fullPath = $path . $filename;
    mysql_select_db($database_connDioceseofife, $connDioceseofife);
    $sql  = "SELECT file FROM publications WHERE pubID = $fileID";
    $result = mysql_query($sql) or die(mysql_error());
    $row = mysql_fetch_assoc($result);

    if($filename == NULL) {
        die('No file exists or the name is invalid!');
        }

    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header("Content-Disposition: attachment; filename=\"$filename\"");
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    readfile($fullPath);

}
?>

现在我的问题是,当下载弹出窗口出现时,它读取文件是 0 字节。而且下载的时候打不开。我收到消息,它不是受支持的文件类型,或者它已损坏或损坏。

请任何帮助将不胜感激。

4

2 回答 2

0

谢谢大家帮助我。进一步阅读后,我已经能够解决问题。我已经更新了我写的初始脚本。以上是现在的工作脚本。我所做的是包含$fullpath = $path . $filename然后header("Content-Disposition: attachment; filename=\"$filename\"");将 readfile 函数从readfile($path)更改为readfile($fullpath). 再次感谢@nlsbshtr 和其他所有人的帮助。

于 2013-01-26T17:58:27.687 回答
0

您没有对 $row 中的查询结果做任何事情。

使用 $row['file'] 获取实际文件本身。

于 2013-01-26T14:39:18.270 回答