douhao2548 2013-07-24 21: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 21: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条)

报告相同问题?

悬赏问题

  • ¥20 修改光猫sn的时候提示失败
  • ¥15 java大作业爬取网页
  • ¥15 怎么获取欧易的btc永续合约和交割合约的5m级的历史数据用来回测套利策略?
  • ¥15 有没有办法利用libusb读取usb设备数据
  • ¥15 为什么openeluer里面按不了python3呢?
  • ¥15 关于#matlab#的问题:训练序列与输入层维度不一样
  • ¥15 关于Ubuntu20.04.3LTS遇到的问题:在安装完CUDA驱动后,电脑会进入卡死的情况,但可以通过键盘按键进入安全重启,但重启完又会进入该情况!
  • ¥15 关于#嵌入式硬件#的问题:树莓派第一天重装配置python和opencv后第二天打开就成这样,瞎捣鼓搞出来文件夹还是没把原来的界面调回来
  • ¥20 Arduino 循迹小车程序电路出错故障求解
  • ¥20 Arduino 循迹小车程序电路出错故障求解