รายละเอียดของการตอบ ::
ผมไม่แน่ใจว่า partมันถูกไหม ผมเลยลองเปลี่ยนพาสมันครับ
ผมลองทำแบบธรรมดาแล้วเหมือนกันครับ มันจะเปิดอ่านไฟล์ครับแบบธรรมดา
แบบธรรมดาโหลดได้บางไฟล์อ่าครับ
Code
<a target='_blank' href='../Files/552021355/php/1457074196.txt'><img src=../images/folderpix/download_icon.png width="38" height="28" align=absmiddle />
แบบเก่าลองเปลี่ยนpart ให้เหมือนธรรมดาแล้วครับ
Code
$song_path = "../Files/552021355/php/1457074196.txt";
$song_name=$song_name."-".$check3.".txt";
if (file_exists($song_path)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.($song_name));
header('Content-Disposition: inline; filename="'.$song_name.'"');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($song_path));
ob_clean();
flush();
readfile($song_path);
}