|
|
|
upload ไฟล์เข้าฐานข้อมูลได้ แต่ Download ไม่ได้ครับ ช่วยที |
|
|
|
|
|
|
|
ตรวจสอบ link ให้ถูกต้องด้วยน่ะครับ
|
|
|
|
|
Date :
2009-06-18 23:59:15 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มีโค้ดให้ดูไหมคับ
|
|
|
|
|
Date :
2009-06-19 10:32:17 |
By :
backship |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if($Myfile!=""){
echo "\t<td width=10%><center><a href='Download.php?Myfile=$row[Myfile]'><img src='Background web\webpage\Icon\imgDownload.gif'></center></a></td>\n";
}
else {
echo "\t<td width=10%><center><img src='Backgroundweb\webpage\Icon\delete.gif'></center></a></td>\n";
}
นี่เป็นโค้ดที่เช็คไฟล์คับ
และก็..
<?php
include("config.inc.php");
mysql_connect($host,$user,$passwd);
$sql = "select * from webboard_data where ?Myfile='$Myfile'";
mysql_query("SET NAMES 'tis620' ");
$result = mysql_db_query($dbname,$sql);
ob_start();
$file = "/Download/$Myfile";
header("Content-Description: File Transfer");
header("Content-type: application/force-download");
header("Content-Length: " . filesize($file));
header("Content-Disposition: attachment; filename=" . basename($file));
ob_end_flush();
readfile($file);
?>
นี่คือ โค้ด Download.php คับ ผมไม่รู้ผมทำถูกรึป่าว ไฟล์ที่ User อัพจะอยู่โฟลเดอร์ของ Serv แต่ข้อมูลรายละเอียดต่างๆจะอยู่ใน Database อ่ะคับ ช่วยดูให้หน่อยนะคับ
จะดึงออกมายังไงอ่ะคับ
|
|
|
|
|
Date :
2009-06-19 17:09:27 |
By :
โจทาโร่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
บรรทัดนี้
echo "\t<td width=10%><center><a href='Download.php?Myfile=$row[Myfile]'><img src='Background web\webpage\Icon\imgDownload.gif'></center></a></td>\n";
อยากถามว่า $row[myfile] นี่คือชื่อฟิวส์ในตารางที่เก็บข้อมูลใช่ไหมคับ
งั้นตรงนี้
$result = mysql_db_query($dbname,$sql);
ลองเพิ่มบรรทัดนี้ดูนะคับ
$row=mysql_fetch_array($result)
ผมไม่แน่ใจนะ รอผู้รู้ท่านต่อไปครับ
|
|
|
|
|
Date :
2009-06-19 21:14:42 |
By :
backship |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$sql = "select * from webboard_data where ?Myfile='$Myfile'";
|
|
|
|
|
Date :
2009-06-19 22:27:03 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็ยังไม่ได้อ่ะคับ มันเด้งให้ดาวโหลดตัวโปรแกรมเองเลย คือแทนที่มันจะเด้งให้ดาวโหลดตัวไฟล์ แต่กลับเด้ง Download.php มาให้โหลดแทน T T ขอผู้ใจบุญช่วยทีคับ
|
|
|
|
|
Date :
2009-06-20 00:16:34 |
By :
โจทาโร่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$row[myfile] คือชื่อฟิลในตารางเก็บข้อมูลคับ
แต่ตัวไฟล์จริงจัดเก็บอยู่ในโฟลเดอร์ของ serv คับ
ลองหลายทีแล้วก้อไม่ได้ซักที จนปัญญา ....
|
|
|
|
|
Date :
2009-06-20 00:19:45 |
By :
โจทาโร่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งงจริงๆ ส่งชื่อไฟล์มาผ่าน url ใช่ไหม แล้วมา select อะไรอีก
$file = "/Download/$Myfile"; ถ้าไฟล์อยู่ใน serv ก็เปลี่ยนเป็น
$file = "serv/$Myfile";
header("Content-Description: File Transfer");
header("Content-type: application/force-download");
header("Content-Length: " . filesize($file));
header("Content-Disposition: attachment; filename=" . $Myfile);
readfile($file);
|
|
|
|
|
Date :
2009-06-20 00:27:42 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นั่นดิคับ ผมลองเอาตรง select ออกมันก็ทำงานได้ แต่ คราวนี้ผมได้ไฟล์ที่เด้งออกมาเป็น "WINDOWSTempphp32F.tmp" มันคืออะไรอ่ะคับ ไม่ใช่ไฟล์ที่ User อัพโหลดเลย
พอดีผมความรู้น้อยอ่ะคับ ช่วยชี้แนะทีคับ....
|
|
|
|
|
Date :
2009-06-20 00:45:27 |
By :
โจทาโร่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
path ของโฟล์เดอร์ serv คุณ อยู่ที่ไหนคับ
|
|
|
|
|
Date :
2009-06-20 02:47:55 |
By :
backship |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
การดาวน์โหลดไฟล์ที่อยู่ในฐานข้อมูล
ก็เพียงแต่เรา link ไปที่ไฟล์นั้นเลยคับ
<a heref="<? $rs['พาธ/ชื่อไฟล์']; ?>"> <? echo $rs['ชื่อไฟล์'] ?> </a>
พอเข้าใจไหมครับ ถ้าไม่เข้าใจจะเอา Code ให้ดู
|
|
|
|
|
Date :
2009-06-20 08:41:14 |
By :
achita |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?
include "connect.php";
$db_conn = mysql_connect($host,$username,$password) or die ("Can not conect database");
mysql_select_db($dbname,$db_conn);
$sql = "select * from defectproject";
$result = mysql_db_query ("$dbname", $sql);
while ($rs=mysql_fetch_array ($result))
{
if ($rs[project_file]==""){ echo "-"; } else {
echo "<a href='$rs[project_file]'>$rs[project_file]</a>";
}
}
?>
|
|
|
|
|
Date :
2009-06-20 08:48:17 |
By :
achita |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมทำได้แล้วคับ ง่ายสุดๆเลย แค่ผมดึงเอาฟิลที่เก็บชื่อของไฟล์แล้ว Link ไปโดยตรงเลย
if($Myfile!=""){
echo "\t<td width=10%><center><a href='/Download/$Mynamefile '><img src='Background web\webpage\Icon\img_category.gif'></center></a></td>\n";
ขอบคุณทุกๆคนที่ช่วยเหลือมากๆเลยยยยยยยยค้าบบบบ
|
|
|
|
|
Date :
2009-06-21 00:17:53 |
By :
โจทาโร่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|