Zip a folder on the server with php

zip icon

I have a spent a day today figuring how to zip a client's web site folder on a Godaddy shared Linux hosting today (they made sure users don't have SSH access on those) in order to transfer it to another server. Apparently, given the limitations of the account setup the best way was to write a php script by executing which i would zip the given folder contents, so that then i could copy just one file and unzip it on the target server.

And it can't be easier than that - if you have a folder, which contains a number of other folders and files in them the script below lets you add to the zip file quickly and easily:

 
<?
// increase script timeout value
ini_set("max_execution_time", 300);
// create object
$zip = new ZipArchive();
// open archive
if ($zip->open("my-archive.zip", ZIPARCHIVE::CREATE) !== TRUE) {
die ("Could not open archive");
}
// initialize an iterator
// pass it the directory to be processed
$iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator("app/"));
// iterate over the directory
// add each file found to the archive
foreach ($iterator as $key=>$value) {
$zip->addFile(realpath($key), $key) or die ("ERROR: Could not add file: $key");
}
// close and save archive
$zip->close();
echo "Archive created successfully.";
?>
 

Proudly taken from the zend.com.



Tags: , ,

Friday, January 16th, 2009 Hacks, Hosting Setup, PHP

You might also like

Intermedia hosting outsources technical support to Russia It has come as a surprise, when instead of an Indian person a girl with a russian accent answered my...
Apache vs. Nginx – testing performance under heavy load It has come to my attention, when a client of mine recently experienced unexpected traffic spike, that...
Thoughts about cloud hosting for Grails applications A few years ago nobody probably heard about "cloud computing" term. Except maybe for engineers building...
Riding River Line Light Rail Along with visit to Princeton today i took a ride on a River Line, a New Jersey Light Rail. More photos...

4 Comments to Zip a folder on the server with php

  1. Great Job, I have made some modification (see below); do you think it will work:

    < ?php
    open('myZip.zip', ZIPARCHIVE::CREATE) !== TRUE)
    {
    	die ("Could not open archive");
    }
    // initialize an iterator
    // pass it the directory to be processed
    $iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator("$dir/"));
    // iterate over the directory
    // add each file found to the archive
    foreach ($iterator as $key=>$value)
    {
    	$zip->addFile(realpath($key), $key) or die ("ERROR: Could not add file: $key");
    }
    
    // close and save archive
    $zip->close();
    echo "Archive created successfully. click to download";
    ?>
    
  2. tarek71 on April 12th, 2010
  3. Nice! Have to test it though…

  4. Oleksiy Deverishchev on April 12th, 2010
  5. Nice Script..
    It’s really help me.

  6. Vasant on June 16th, 2010
  7. this is a good script. but i find one problem in this script it does not include int empty folders in the archive. but i need those empty folders also. anyone can help me.

  8. mazia on June 17th, 2010

Leave a comment

About


Oleksiy Deverishchev is a freelance web developer living in New York City. In this blog he shares his experience with various gadgets and web technologies.

For more information and hiring availability please send an email

Advertisment

Latest tweets

Recent works / current clients

  • BellatAuto Inc - New York / New Jersey used car auto dealer: design and coding.
  • Colette Maison Lumiere - multimedia artist: design and coding for the CMS.
  • Complete Body & Spa - New York City personal training and gym management company: Wordpress template coding.
  • DaleStyle Blog Dale Sudakoff’s fashion blog: Wordpress template coding.
  • DoctorKalitenko.COM - Sergey Kalitenko : antiaging hollistic doctor performing bioidentical replacement therapy. CMS coding and design.
  • Great Jones Spa - premiere New York City Day Spa: coded and designed website and storefront

Featuring Recent Posts Wordpress Widget development by YD