naveenbj Posted February 5, 2008 Share Posted February 5, 2008 Hello Im not able to download large pdf files from the webpage of my site so can anyone suggest me for this Regards Nj Quote Link to comment https://forums.phpfreaks.com/topic/89496-cant-download-pdf-files-from-website/ Share on other sites More sharing options...
ryeman98 Posted February 5, 2008 Share Posted February 5, 2008 Is there an error message when you're trying to download it? Quote Link to comment https://forums.phpfreaks.com/topic/89496-cant-download-pdf-files-from-website/#findComment-458402 Share on other sites More sharing options...
naveenbj Posted February 5, 2008 Author Share Posted February 5, 2008 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 Quote Link to comment https://forums.phpfreaks.com/topic/89496-cant-download-pdf-files-from-website/#findComment-458408 Share on other sites More sharing options...
ryeman98 Posted February 5, 2008 Share Posted February 5, 2008 Let's see the code between lines 20 and 30 then. Just because it'll be easier to see what's going on. Quote Link to comment https://forums.phpfreaks.com/topic/89496-cant-download-pdf-files-from-website/#findComment-458412 Share on other sites More sharing options...
naveenbj Posted February 5, 2008 Author Share Posted February 5, 2008 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 Quote Link to comment https://forums.phpfreaks.com/topic/89496-cant-download-pdf-files-from-website/#findComment-458413 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.