Jump to content

cant download pdf files from website:(!!


naveenbj

Recommended Posts

Is there an error message when you're trying to download it?

 

 

thanks for reply

 

yes im getting the error in xml file .

here is the error which im getting

failed to open stream: No such file or directory in <b>/home/content/g/e/m/mysite/html/download.php</b> on line <b>25</b><br />

 

Nj

thanks for reply!!

 

<?
$file_id=$_GET['id'];

$query="select * from file where file_id=".$file_id;
$file=$db->getRow($query);
dbError($file);

$file_name=$file->file_name_server;
$destination_path=$CFG->dirroot.$CONNECTOR."files".$CONNECTOR.$file_name;

$fn=explode("#",$file_name);
$type=explode(".",$fn[1]);

header("Content-type: application/".$type[1]);
header("Content-Disposition: attachment; filename=".$fn[1]);
readfile($destination_path);
?>

 

 

here is the code which i used for that

 

Regards

Nj

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.