 |
|
อัพโหลด+ดวาน์โหลดได้ แต่เปิดไฟล์ไม่ได้ครับ รบกวนหน่อยครับ
ตัวโค๊ดเนี้ยถ้าผม ระบุชื่อไฟล์โดยตรงมันจะ ดาวน์โหลดมาได้ และ เปิดไฟล์ได้ปกติครับ
Code (PHP)
$download_path = $_SERVER['DOCUMENT_ROOT'] . "/domain.com/file_3gp";
$filename="VC07RSHUZW.3gp";
//$filename = $_GET['filename'];
// Detect missing filename
if(!$filename) die("I'm sorry, you must specify a file name to download.");
// Make sure we can't download files above the current directory location.
if(eregi("\.\.", $filename)) die("I'm sorry, you may not download that file.");
$file = str_replace("..", "", $filename);
// Make sure we can't download .ht control files.
if(eregi("\.ht.+", $filename)) die("I'm sorry, you may not download that file.");
// Combine the download path and the filename to create the full path to the file.
$file = "$download_path/$file";
// Test to ensure that the file exists.
if(!file_exists($file)) die("I'm sorry, the file doesn't seem to exist. $file");
// Extract the type of file which will be sent to the browser as a header
$type = filetype($file);
// Get a date and timestamp
$today = date("F j, Y, g:i a");
$time = time();
// Send file headers
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Content-type: $type");
header("Content-Disposition: attachment;filename=$filename");
header('Pragma: no-cache');
header('Expires: 0');
// Send the file contents.
readfile($file);
แต่ถ้าผมนำมาติดต่อกับ ฐานข้อมูล มันก็ดาวน์โหลดได้ครับ แต่เปิดไฟล์ไม่ได้ครับ
Code (PHP)
$id=$_GET['id'];
$sql="select * from tb_clips where id_clip='$id'";
$result=mysql_db_query($dbname,$sql);
$num_rows=mysql_num_rows($result);
$record=mysql_fetch_assoc($result);
$filename="$record[name_clip]";
$download_path = $_SERVER['DOCUMENT_ROOT'] . "/domain.com/file_$record[type_clip]";
// Detect missing filename
if(!$filename) die("I'm sorry, you must specify a file name to download.");
// Make sure we can't download files above the current directory location.
if(eregi("\.\.", $filename)) die("I'm sorry, you may not download that file.");
$file = str_replace("..", "", $filename);
// Make sure we can't download .ht control files.
if(eregi("\.ht.+", $filename)) die("I'm sorry, you may not download that file.");
// Combine the download path and the filename to create the full path to the file.
$file = "$download_path/$file";
// Test to ensure that the file exists.
if(!file_exists($file)) die("I'm sorry, the file doesn't seem to exist. $file");
// Extract the type of file which will be sent to the browser as a header
$type = filetype($file);
// Get a date and timestamp
$today = date("F j, Y, g:i a");
$time = time();
// Send file headers
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Content-type: $type");
header("Content-Disposition: attachment;filename=$filename");
header('Pragma: no-cache');
header('Expires: 0');
// Send the file contents.
readfile($file);
รบกวนท่านใดสามารถ โปรดชี้แนะด้วยครับ
**ที่ผมใช้ โดค๊ดนี้ เพราะไม่อยากให้ ผู้ใช้รู้ ว่า การดาวน์โหลด เนี่ยไฟล์ ถูกเก็บไว้ไหน และ แต่ละไฟล์ชื่อไฟล์ว่าอะไร ประมาณเนี้ยครับ
** ผมลองใช้ Code ตาม บทความในนี้แล้ว ก็เป้ยปัญหาแบบเดีญวกัน คือ โหลดได้ แต่เปิดไม่ได้ครับ
ขอบคุณทึกท่านมากๆ ครับ
Tag : - - - -
|
|
 |
 |
 |
 |
Date :
2010-04-03 15:53:35 |
By :
bouy2208 |
View :
1455 |
Reply :
1 |
|
 |
 |
 |
 |
|
|
|
 |