summaryrefslogtreecommitdiff
path: root/full_download.inc
diff options
context:
space:
mode:
authorprashantsinalkar2017-05-08 12:54:00 +0530
committerprashantsinalkar2017-05-08 12:54:00 +0530
commitf612a7dd5b0063fc5c409ae782372eabbde3670a (patch)
tree7dc7b2f9d87b1a331a414d7bbabe3fa51477d27b /full_download.inc
parent38a93ab715ef4c1b0737d19a1e5315a9f6954224 (diff)
parentce2cb0bdbaba823927b363f414538d3ddca4d634 (diff)
downloadscilab_textbook_companion-f612a7dd5b0063fc5c409ae782372eabbde3670a.tar.gz
scilab_textbook_companion-f612a7dd5b0063fc5c409ae782372eabbde3670a.tar.bz2
scilab_textbook_companion-f612a7dd5b0063fc5c409ae782372eabbde3670a.zip
Merge branch 'master' of https://github.com/FOSSEE/scilab_textbook_companion
Diffstat (limited to 'full_download.inc')
-rwxr-xr-xfull_download.inc11
1 files changed, 6 insertions, 5 deletions
diff --git a/full_download.inc b/full_download.inc
index 0895bd2..41d8eae 100755
--- a/full_download.inc
+++ b/full_download.inc
@@ -200,6 +200,7 @@ function textbook_companion_download_full_book()
} //$example_row = $example_q->fetchObject()
} //$chapter_row = $chapter_q->fetchObject()
$zip_file_count = $zip->numFiles;
+ //var_dump($zip->numFiles);die;
$zip->close();
if ($zip_file_count > 0)
{
@@ -207,12 +208,12 @@ function textbook_companion_download_full_book()
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename="' . $book_data->book . '.zip"');
header('Content-Length: ' . filesize($zip_filename));
- //header("Content-Transfer-Encoding: binary");
- //header('Expires: 0');
- //header('Pragma: no-cache');
- //ob_end_flush();
+ header('Content-Transfer-Encoding: binary');
+ header('Expires: 0');
+ header('Pragma: no-cache');
+ ob_end_flush();
ob_end_clean();
- //flush();
+ flush();
readfile($zip_filename);
unlink($zip_filename);
} //$zip_file_count > 0