|
|
|
download file ที่อยู่นอก localhost ไม่ได้ครับ ผมจะเก็บ file ใว้ใน harddisk อีกลูกครับ |
|
|
|
|
|
|
|
มันก็น่าจะเรียกได้จาก localhost หรือผ่าน Web Service เท่านั้นน่ะครับ
|
|
|
|
|
Date :
2013-03-05 11:21:14 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ผมใช้downloadตัวนี้เข้าช่วย
Code (PHP)
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;
}
|
|
|
|
|
Date :
2013-03-05 12:21:58 |
By :
samaskdass |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดไปครับ
|
|
|
|
|
Date :
2013-03-05 12:30:23 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แต่ว่า download file ที่เป็นภาษาไทยไม่ได้ครับใช้ iconv("UTF-8","TIS-620",$file); แล้ว urldecode($file); แล้ว ก็ยัง download file ที่เป็นภาษาไทยไม่ได้ครับ download ได้เฉพาะ ภาษาอังกฤษรบกวนด้วยครับ
|
|
|
|
|
Date :
2013-03-06 09:34:52 |
By :
samaskdass |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|