I've been at this for a while. This actually worked one time, then never again. it simply does not create the zip file. The file does exist.

$zip = new ZipArchive();
$filename = "./test" . time() .".zip";

if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) {      
    exit("cannot open <$filename>\n");
}

$thisdir = "$_SERVER[DOCUMENT_ROOT]/zip";
$zip->addFile($thisdir . "/trash-icon.png", "/gabage.png");
echo "numfiles: " . $zip->numFiles . "\n";
echo "status:" . $zip->status . "\n";
$zip->close();

If I add something like

$zip->addFromString("testfilephp.txt", "#1 This is a test string added as testfilephp.txt.\n"); 

it creates the zip with the txt file in it.. but a no go for anytype of existing file.

link|improve this question
/trash-icon.png is almost certainly wrong, as it points to the server's root directory. Are you 100% sure the files you are trying to add in fact exist? – Pekka Mar 24 '11 at 17:23
Are you certain that /trash-icon.png actually exists, remembering that it is in the filesystem root directory – Mark Baker Mar 24 '11 at 17:24
hah. I guess it was the file. it's working now. Thanks guys – Vance Mar 24 '11 at 17:33
feedback

1 Answer

The ZipArchive::addFile() method accepts the path to the file as its first parameter.


Here, you are using :

$zip->addFile("/trash-icon.png", "/gabage.png");

Which means you are trying to add the /trash-icon.png file to your archive.


Are you sure this file exists ?

Note there is a / at the beginning of that file's path, which indicates it's an absolute path.
Maybe that / should be removed, to use a relative path ?

link|improve this answer
Sorry this was a bad example of one of the many iterations I tried. code is updated – Vance Mar 24 '11 at 17:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.