The ziparchive tag has no wiki summary.
5
votes
3answers
876 views
Why won't PHP create this zip file (permissions issue)
I am on windows
I am using PHING to zip up some files
I have lots of things being zipped
Zipping works, except for ones that include a particular phing fileset in the files being zipped
When I debug, ...
4
votes
3answers
5k views
Fatal error: Class 'ZipArchive' not found in
I have a problem that I install 'Archive_Zip 0.1.1' on Linux server, but when I try to run the script to create the zip file it gives the fatal error
"Fatal error: Class 'ZipArchive' not found in ...
3
votes
2answers
73 views
Setting permissions in ZipArchive
I have a Zip file. I open it with ZipArchive php library, and add a dir and a file in it. When I extract it with ubuntu's default unarchiver everything works as expected. But when I extract it with ...
3
votes
1answer
310 views
PHP Aborting when creating large .zip file
My php script running on CentOS 5.6 and PHP 5.2.12 using ZipArchive() and successfully creates .zip files over 1.6Gb but not for a larger archive of 2GB or larger - PHP aborts with no apparent error. ...
3
votes
1answer
277 views
Extract ZipFile using Python, display Progress Percentage?
I know how to extract a zip archive using Python, but how exactly do I display the progress of that extraction in a percentage?
3
votes
1answer
544 views
Create a zip file using PHP class ZipArchive without writing the file to disk?
I would like to create a zip file in memory using a ZipArchive (or a native PHP class) and read the content of the file back to the client. Is this possible? If so, how?
The files that I want to ...
2
votes
1answer
68 views
ZipArchive::filename, how is it supposed to work?
I thought ZipArchive::filename would represent the path to the actual zip file, but for every zip file I open with ZipArchive::open(), ZipArchive::filename gives me an empty string.
Example:
$zip = ...
2
votes
1answer
1k views
Compression/Decompression library for the iPhone and Xcode 4
I have been working on a project that requires downloading a zipped file off a server, and am stuck trying to uncompress it on the iPhone. There appear to be a number of solutions such as LiteUnzip , ...
2
votes
2answers
911 views
Size limit on PHP's zipArchive class?
I'm creating a zip file in PHP for the user to download. I get no errors from PHP or from checking the zipArchive class's GetStatusString function. But if I put some files into the archive, then ...
1
vote
0answers
55 views
ziparchive password detection
Does anyone know a way to detect if a zip file has a pasword set when trying to unzip with the library ZipArchive?
The code:
[zip UnzipOpenFile:unzipFilename Password:zipPassword]
will:
unzip ...
1
vote
0answers
140 views
ios unzip limits using ZipArchive
Does anyone know if there is a filesize limit with ZipArchive in iOS?
I am using it to unzip files to my Documents folder and it works perfect with a 65 Mb file and under but it crashes with a 125 Mb ...
1
vote
2answers
54 views
Extract folder content using ZipArchive
I have compressed_file.zip on a site with this structure:
I want to extract all content from version_1.x folder to my root folder:
How can I do that? is possible without recursion?
1
vote
0answers
108 views
ZipArchive - addFile won't work
Situation
I have a .zip file. In this .zip is a folder "dist/", in the folder "dist/" are 2 things: 1) another folder "lib/" 2) a jar-file
I open the .zip and extract the dist/jar-file. A "new" ...
1
vote
1answer
199 views
ZipArchive can't unzip a larger zip file on the Device (ipad)?
ZipArchive can't unzip a larger zip file on the Device (ipad) ? It works on the simulator, but doesn't on the ipad. The zip file is about 60MB.
It doesn't show any error message and just retuan 0 ...
1
vote
1answer
332 views
using zipArchive addFile() will not add image to zip
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() ...
1
vote
1answer
282 views
overwriting file in ziparchive
I have archive.zip with two files: hello.txt and world.txt
I want to overwrite hello.txt file with new one with that code:
import zipfile
z = zipfile.ZipFile('archive.zip','a')
z.write('hello.txt')
...
1
vote
2answers
241 views
On the fly zip or tar creation?
I may NOT bother with this but if its very simple i may consider it. The site i am working on by design is to hold hundreds of thousands of files. I dont know if we'll have only one download or ...
1
vote
1answer
131 views
PHP - ZipArchive - Does not work with “Winzip version 9”
I am trying to unzip a .zip file by my code. I am using ZipArchive for that one. It is wokring fine but only problem is, when I add zip file which is zipped by "winzip version 9", it extracts empty ...
1
vote
2answers
355 views
ZipArchive php class extract files as root. Why?
I have a php script:
$extract_dir = "./";
$extract_file = "extractME.zip";
$zip = new ZipArchive;
$res = $zip->open($extract_file);
if ($res === TRUE) {
$zip->extractTo($extract_dir);
...
1
vote
2answers
708 views
ZipArchive memory problems on iPhone for large archive
I am trying to compress multiple files into a single zip archive and I am running into low memory warning. Since the complete zip file is loaded into the memory I guess that's the problem. Is there a ...
0
votes
1answer
48 views
Perl: recursive descent in zip files
i am trying to scan recursively a bunch of zip files and I am using - of course - archive::zip. I would like to avoid to expand the archives content in a temporary folder. I would like to be able to ...
0
votes
1answer
36 views
How popular is PHP Zip Extension?
How popular is PHP ZIP extension by hosting providers? Can I use it as default archive software for my WordPress plugin or should I take a look at another lib?
0
votes
0answers
15 views
Skip “root” directory when extracting using ZipArchive class?
I am attempting to use the ZipArchive class to unzip the contents of a zip containing a GitHub repository.
When you download a zip from GitHub, the zip contains a folder at the root of the zip named ...
0
votes
0answers
18 views
unzOpen returns null while unzipping tz file in iphone
I am using ZipArchive to unzip tz files in my iphone App. It works fine when I have a sample tz file which contains text files inside it. However, my main usage is to try to unzip a tz file containing ...
0
votes
1answer
63 views
PHP ZipArchive Compression
I am using the PHP ZipArchive class to create a ZIP archive. The archive will contain already compressed ZIP files. As such, there is no use compressing already compressed ZIP files and this will only ...
0
votes
0answers
41 views
ZipArchive not extracting files to folder
I'm having problems with the ZipArchive module while extracting files. The module manage to extract one file but empty.
My Zip files were created with the 7-Zip.Zip type.
You can get the example ...
0
votes
1answer
242 views
How to unzip a password protected zip file in iOS? [closed]
Possible Duplicate:
unzip source code in Iphone
Obj-C, zip libary which will zip and unzip, with password protection?
I have a password-protected zip-file that contains a text file. I ...
0
votes
1answer
27 views
PHP: How to construct zip file from database (or binary file content)?
I need to create a zip file with PHP, but the source files are in database rather than stored on disk. Actually, file contents I want to pack are stored as binary in one database, and metas in ...
0
votes
0answers
59 views
PHP: ZipArchive::extractTo() doesn't complete unzipping
I'm using ZipArchive to unzip files. It's working great, except for ONE file so far (it's 10.6MB, if that matters).
The problem is, ZipArchive::extractTo() returns FALSE, and that's correct since if ...
0
votes
2answers
79 views
PHP: generated zip has chmod 644
I'm using ZipArchive to create Zips and then provide them to download. I save them in a folder and I want to delete all every night (my cronjob would do that).
But now I've seen that they are ...
0
votes
1answer
67 views
In org .commons.ziparchiveentry how to give the filename in foreign languages
In ZipArchiveEntry how to define the filename(files that are zipped have name in the foreign language other than english). When i define
ZipArchiveEntry ze = new ZipArchiveEntry(filename);
It works ...
0
votes
1answer
496 views
OSMdroid : How to render offline map from a local zip archive
I'm using the osmdroid library for my custom map application and my last issue is related to the accessibility of offline contents prepared in a common format easy to share.
In the specific I'm now ...
0
votes
1answer
24 views
Zipping commands and directory (Windows) Troubles
The problem is 'I want a program which creates a backup of all my important files'.
This lesson is located at: http://www.ibiblio.org/g2swap/byteofpython/read/problem-solving.html
import os
...
0
votes
1answer
68 views
ZipArchive::getFromName does not find filename
Any idea what I am doing wrong here? It keeps dying with 'bye bye'. There is an index.php file inside the zip archive.
$zip = new ZipArchive;
$zip->open($source);
$test = ...
0
votes
1answer
55 views
Help with php function zip_open
It's now 5am, and as much as I try to research, I can't find much information on this function set. Here's the code I have (shortened slightly):
<?php
$source = ...
0
votes
0answers
70 views
php ZipArchive fail to add file
I am using the default library: php_zip.dll inside php.ini of php5
And using Windows server.
The new file and folder creations are just smooth.
BUT when it iterate through file where ending with ...
0
votes
1answer
337 views
OSX Lion libz unzipping file structure change
Basically when I unzip a file that has been stored on OSX Lion, I get the zip file name as a folder with the files inside the foler...
So Unzipping zipfile.zip gives me the folder 'zipfile' with 3 ...
0
votes
0answers
35 views
How to Compress/Zip a directory(with files) without creating directories from my file system ?
I have problems with ZipArchive that compresses a directory of files. Most of the samples from the internet is easy to understand and it work EXCEPT that when I look at the zip result of my zipping ...
0
votes
3answers
81 views
PHP ZipArchive limited to 10mb
I have a project where the user can add multiple files to a cart and then zip them into a single file and download all of them at once.
It seems though that as soon as the cart gets bigger then 10mb ...
0
votes
2answers
112 views
Unzipping file on the device crashes due to timeout
I am trying to unzip a file which is being downloaded through URL. The file downloaded is in zip format. I have used library : iPhone Unzip code which has SSZipArchive Library. It is used in current ...
0
votes
2answers
2k views
Problems trying to add the libz.1.2.3.dylib to my ipad project
First of all, i'm now on this site so really sorry if i'm commiting some error posting this question.I'm trying to use the zipArchive class to manage zip files in an ipad project.
What steps will ...
0
votes
1answer
17 views
What are some of the archive fomrats for source code distribution?
I'm building a small collection of different open source packages for some internal testing and using find to locate source codes from wget-s of the various sites. What are the various archiving ...
0
votes
0answers
55 views
ZipArchive Upgrade Compilation Errors
I’m using ZipArchive in a C++ project, but I’m currently using 3.0.0 and want to upgrade to using 4.1.0
I have the reference to the Library, which was compiled with the same settings as the main ...
0
votes
0answers
315 views
ZipArchive problem to extracting zip files that have been downloaded from linux server
ZipArchive can not extract files when i download a zip file from a linux server.
when I extract files manually and compress them again in windows, then there is no problem.
it seem that could be a ...
0
votes
3answers
398 views
zipArchive with MAMP?
trying to work out how to install zipArchive extension with MAMP, but not having much luck
any know how to do this? I have no idea
0
votes
2answers
15 views
track results of $zip->expandTo in order to log files?
I am using the PHP zipArchive class to uncompress files and store them on a server, but I have a couple of problems
extractTo method only returns true or fales, I need a list of the file names and ...
0
votes
1answer
362 views
What encoding does ZipArchive use to store file names inside the created archive?
I'm using the php ZipArchive class in order to generate a zip archive. I use the second parameter of the addFile method in order to set the name of the file in the archive (since the real file on disk ...
0
votes
2answers
988 views
Fatal error: Class 'ZipArchive' not found (PHP 5.3.1)
When the function below is run, I'm getting...Fatal error: Class 'ZipArchive' not found in /home/test/dummyurl.com/wp-content/themes/mytheme/upload-zip.php on line 14
PHP Version is 5.3.1
function ...
0
votes
4answers
1k views
PHP ZipArchive Corrupt in Windows
I am using PHP's ZipArchive class to create a zip file containing photos and then serve it up to the browser for download. Here is my code:
/**
* Grabs the order, packages the files, and serves them ...
0
votes
2answers
1k views
How-to activate the ZipArchive class in PHP 5.3 on CentOS
I read on the documentation I should only compile PHP 5.3.3 with "--enable-zip" parameter, but this doesn't work. I did this but class_exists('ZipArchive') always return false. What should I do next?
...