Feed文件在public_html之外

时间:2011-10-24 20:26:37

标签: php file download readfile public-html

我无法从“public_html”外部向用户上传文件,“public_html”是每个人都可以通过http访问的文件夹。防爆。 www.website.com/ everyhting /是public_html之后。我相信你们都知道我指的是什么。

所以我有这个脚本从(服务器角度)/ images / protected /读取文件(sample.pdf),但PHP找不到我的文件。我做错了吗?

<?php
$file = '/images/protected/sample.pdf';

if (file_exists($file)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename($file));
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    ob_clean();
    flush();
    readfile($file);
    exit;
} else {
    echo "404 - FILE NOT FOUND!<br />\n";
    echo "File: $file";
}
?>

每次执行此脚本时,我都会获得404 - FILE NOT FOUND!<br />\n而不是文件下载。

2 个答案:

答案 0 :(得分:4)

您必须提供绝对系统路径。目前,您要求的文件位于/images/...,而不是/var/www/hosts/whateverdomain/images/...

$file = $_SERVER['DOCUMENT_ROOT'].'/images/protected/sample.pdf';

如果您的文件确实位于/images/protected/,请确保您有足够的权限来读取该文件。

答案 1 :(得分:0)

原来我在共享主机上,所以我的网站的正确“根”路径是/ home / me /