How to Unzip Folders on the Server Using a Simple PHP Script

I have been installing WordPress MU and BuddyPress a lot recently as I test and test and test it for a client’s website.  The uploading of files via ftp has been the biggest consumer of time during this process.

Yesterday, I discovered a simple PHP script that makes installing WPMU, BuddyPress, WordPress, or really anything else a quick and painless process.  All you need is a zipped folder!  Here is the script:

<?php system('unzip FILENAME.zip'); ?>

Simply:

  1. Create a file called unzip.php on your server.
  2. Copy-and-paste the above line of code into the file. Make sure to update “filename.zip” to whatever your file path is.
  3. Open a browser and point it to http://YOURDOMAIN.com/unzip.php (make sure to change “yourdomain.com” to your domain).

That’s it!

Posted in ,

7 Comments

  1. Paul Alvares on March 22, 2010 at 8:31 pm

    Champ! it works great =]



  2. RB on May 25, 2010 at 1:26 pm

    You are fantastic!!! Saved me so much time after spending a couple of hours trying to figure out(I’m new to this)…thank you! (O:



  3. be on September 18, 2010 at 6:23 am

    Warning: system() has been disabled for security reasons…

    it doesn’t work.



    • Toby on September 28, 2010 at 9:22 am

      That is an issue with your hosting provider.



  4. raoul on August 19, 2011 at 8:54 am

    hm.. no luck. Script runs fine. Just no result.



  5. toby on August 30, 2011 at 12:17 pm

    @raoul and @be – The issue is likely your server setup. Contact your hosting provider and ask them to support the function listed above.



  6. Vasu on December 22, 2011 at 6:00 am

    Here’s an alternate method:

    $zip = new ZipArchive;
      $zipped = $zip->open('test.zip');
      if ( $zipped ) {
      $zip->extractTo(dirname(__FILE__).'test');
      $zip->close();
    }
    


RSS From Toby’s Blog

  • WordPress Maintenance Checklist: Keep Your Site Running Smoothly
    Discover the essential tasks for effective WordPress maintenance and ensure your website runs smoothly and securely with our comprehensive guide.
  • Why We Don’t Automate Our WordPress Hosting Business
    There are some great platforms out there to automate your website hosting biz: But we don’t use any of them. Here’s why: Hosting companies only get worse over time. Over the years, I’ve hosted websites on a bunch of platforms: All of these hosting companies share one thing in common: Over time, they all got…
  • Fortify Your WordPress Site: Essential Security Steps
    Securing your WordPress site is a critical component of maintaining your online presence and safeguarding your data. Security is no longer a luxury, it has become a necessity in today’s digital world, where threats are lurking at every corner. This piece dives deep into WordPress security basics, giving you a comprehensive understanding of common vulnerabilities…

More posts from themightymo.com

Convert aiff to mp3

How to Convert .aiff to .mp3 files via Command Line

By The Mighty Mo! Design Co. | June 29, 2023

Yesterday I ran into an issue where I needed to convert .aiff files to .mp3. DBPowerAmp was recommended to me as a paid GUI tool. But I wanted something more lightweight, since this is a task I rarely need to do (most of the time, I’m already in Logic Pro, and exporting is simple there).…

google business reviews disappeared 1

Google Removed Our Business Listing – How we restored our biz to the Map and got our reviews back.

By The Mighty Mo! Design Co. | June 12, 2023

I was about to send an email to a potential customer pointing them to our 5-star Google Reviews via our Google Business profile (e.g. the Google Map), hoping this added information about our customers’ past experiences might help me close a deal. But when I checked the Google Reviews link, it was down. And after…

cloudways off site backup pricing

The Price We Pay: Cloudways Off-Site Backup vs. Budget WordPress Hosts

By The Mighty Mo! Design Co. | June 5, 2023

Cloudways Off-Site Backup Pricing Calculator: The Ultimate Cost Guide

RSS From Toby’s Blog

  • WordPress Maintenance Checklist: Keep Your Site Running Smoothly
    Discover the essential tasks for effective WordPress maintenance and ensure your website runs smoothly and securely with our comprehensive guide.
  • Why We Don’t Automate Our WordPress Hosting Business
    There are some great platforms out there to automate your website hosting biz: But we don’t use any of them. Here’s why: Hosting companies only get worse over time. Over the years, I’ve hosted websites on a bunch of platforms: All of these hosting companies share one thing in common: Over time, they all got…
  • Fortify Your WordPress Site: Essential Security Steps
    Securing your WordPress site is a critical component of maintaining your online presence and safeguarding your data. Security is no longer a luxury, it has become a necessity in today’s digital world, where threats are lurking at every corner. This piece dives deep into WordPress security basics, giving you a comprehensive understanding of common vulnerabilities…