douhao2548 2013-07-24 13:07
浏览 21
已采纳

找不到PHP下载的文件

I have a script that gets a url for an mp3 track based on the ID sent via a GET variable in the url. The script then forces a download of this url. The problem i'm having is that the track is not found.

$url = $row['url'];
$file_name = $row['track_name'] .' - '. $row['artist_name'];
$path_parts = pathinfo($url); //get path info
$base_url  = $path_parts['basename']; //only include mp3 track just incase path added in there
$file_path  = '../uploads/' . $base_url; 
if (file_exists($file_path)) {
     header('Content-Description: File Transfer');
 header('Content-Type: audio/mpeg');
     header("Content-Transfer-Encoding: Binary"); 
     header("Content-disposition: attachment; filename=\"".$file_name."\""); 
     header('Expires: 0');
     header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
     header('Pragma: public');
     header('Content-Length: ' . filesize($file_path));
 ob_clean();
     flush();
 readfile($file_path);
 exit;
}

else {
    echo 'File not found.';
    echo '<br/>';
echo $file_path;
}

What is show is something like this;

File not found.
../uploads/demo_4.wav

I have tried putting the full url as $file_path, so http://localhost/upload/ ... but the same thing happens.

If i enter the URL directly the file is there so i'm not exactly sure what is going on.

展开全部

  • 写回答

2条回答 默认 最新

  • douhai9043 2013-07-24 13:17
    关注

    If you are running the script outside of the root folder, you want to use the relative path, try:

    $file_path  = './uploads/' . $base_url; 
    

    If you are running the script in the root folder and simply want to access a subfolder, try:

    $file_path  = 'uploads/' . $base_url; 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部