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条)

报告相同问题?

悬赏问题

  • ¥15 mmocr的训练错误,结果全为0
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀