Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / NewStats: 3,209,060 members, 8,004,729 topics. Date: Sunday, 17 November 2024 at 03:29 AM |
Nairaland Forum / Science/Technology / Programming / Facing Header Problem (721 Views)
Programming Challenge - Navigate Using Same Cache Header / Php Header() Function Error / Php Header() Function Error (2) (3) (4)
(1) (Reply)
Facing Header Problem by Nobody: 12:18am On Mar 29, 2013 |
Hi All, I'm creating a website that creates a zip file and forces user to download of the created file. I'm having trouble using the header to read the file correctly. Below is my code: (Toggle Plain Text) $zipLocation = "./filesFolder/$pageName.zip"; if(file_exists($zipLocation)) $flag = ZipArchive::OVERWRITE; else $flag = ZipArchive::CREATE; $zip = new ZipArchive(); $zip->open($zipLocation, $flag); $zip->addFile("$htmlLocation","$pageName.html" $zip->addFile("$cssLocation","$pageName.css" $zip->addFile("$jsLocation","$pageName.js" $zip->close(); $zip = null; print "zipped<br/>"; //header("location: $zipLocation" header("Cache-Control: must-revalidate" header("Content-type: application/force-download" header("Content-Transfer-Encoding: binary" header("Content-disposition: attachment; filename=$pageName.zip" readfile($zipLocation); The zipfile gets created correctly but when the download dialog appears, the file size is wrong, and when it downloads it cannot be opened. If I use the commented line it works correctly, but I would rather do it this way using the readfile. Can any one tell the reason behind it? |
Re: Facing Header Problem by Nobody: 10:33am On Apr 04, 2013 |
Set all headers before using print Once you use print/echo/print_r etc. any header set thereafter is a joke |
(1) (Reply)
My Voting Plan For 2015 / Serminar Topic Heip Ohhh / Php Send Mail Wilth Gmail SMTP
(Go Up)
Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health religion celebs tv-movies music-radio literature webmasters programming techmarket Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 9 |