₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,911 members, 8,424,150 topics. Date: Wednesday, 10 June 2026 at 06:46 PM

Toggle theme

Facing Header Problem - Programming - Nairaland

Nairaland ForumScience/TechnologyProgrammingFacing Header Problem (752 Views)

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"wink;
$zip->addFile("$cssLocation","$pageName.css"wink;
$zip->addFile("$jsLocation","$pageName.js"wink;

$zip->close();
$zip = null;

print "zipped<br/>";
//header("location: $zipLocation"wink;

header("Cache-Control: must-revalidate"wink;
header("Content-type: application/force-download"wink;
header("Content-Transfer-Encoding: binary"wink;
header("Content-disposition: attachment; filename=$pageName.zip"wink;
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

Programming Challenge - Navigate Using Same Cache HeaderPhp Header() Function ErrorPhp Header() Function Error234

Visual Basic Not InstallingContact Me If You Know How To Use Cryengine3I Want To Learn Microcontroller.