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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.