Skip to content

Instantly share code, notes, and snippets.

@jonmaim
Last active January 22, 2024 00:19
Show Gist options
  • Star 33 You must be signed in to star a gist
  • Fork 18 You must be signed in to fork a gist
  • Save jonmaim/1141513 to your computer and use it in GitHub Desktop.
Save jonmaim/1141513 to your computer and use it in GitHub Desktop.
PHP script to remotely create zip archives of your FTP
<?php
/*
*
* This script will backup your web site by remotely archiving all files on the root FTP directory.
* It will work even if your web server is memory limited buy splitting zips in several arhive files it they are too many files.
* All zip files will be stored in a directory called temporary which must be writable.
*
* How to use it:
* - Place the script at the root of your FTP.
* - Call http://yoursite.com/zip.php
* - In your FTP client go to temporary folder and download all backup_xxxxxx_x.zip files locally
* - Unzip everything with this command: for i in *.zip; do unzip $i; done;
* - Finally to avoid security issues, remove the script from the FTP.
*
*/
// increase script timeout value
ini_set('max_execution_time', 5000);
function show($str){
echo $str . "<br/>\n";
flush();
ob_flush();
}
$date = getdate();
$splitNum = 0;
$archive = "temporary/backup_" . $date[0];
$currentArchive = $archive . "_" . $splitNum . ".zip";
$zip = new ZipArchive();
if ($zip->open($currentArchive, ZIPARCHIVE::CREATE) !== TRUE) {
die ("Could not open archive");
}
$numFiles = 0;
$iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator("./"));
foreach ($iterator as $key=>$value){
$numFiles += 1;
}
show( "Will backup $numFiles to $archive.zip" );
$iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator("./"));
$numFiles = 0;
$counter = 0;
$maxFilePerArchive = 1000;
foreach ($iterator as $key=>$value){
$counter += 1;
if ($counter >= $maxFilePerArchive) {
$currentArchive = $archive . "_" . $splitNum++ . ".zip";
show( "Too many files: splitting archive, new archive is $currentArchive" );
$zip->close();
$zip = new ZipArchive();
if ($zip->open($currentArchive, ZIPARCHIVE::CREATE) !== TRUE) {
die ("Could not open archive");
}
$counter = 0;
}
//$i = $maxFilePerArchive*$splitNum + $counter;
if (! preg_match('/temporary\/backup_' . $date[0] . '/', $key)){
$zip->addFile(realpath($key), $key) or die ("ERROR: Could not add file: $key");
$numFiles += 1;
if ($numFiles % 300 == 0) {
show( "$numFiles" );
}
} else {
show( "Not backuping this file -> $key" );
}
}
// close and save archive
$zip->close();
show( "Archive created successfully with $numFiles files." );
?>
@jezweb
Copy link

jezweb commented Dec 28, 2015

seems like if there is a folder that cant be accessed it will break the backup rather than skipping that folder/file?

eg

Will backup 5480 to temporary/backup_1451275847.zip
ERROR: Could not add file: ./aspnet_client/system_web

Also, there is a typo in the instructions, arhive to be archive

@kmob2
Copy link

kmob2 commented Apr 4, 2016

Doesn't seem to work, on neither HostGator, BlueHost or GoDaddy hosting. Says it's creating several backups.
Splits a fresh wordpress installation into 6 zip files. That's a bit silly.
But then no zip files or temporary folder is actually being created. No error out put and no error log.

@bipulroybpl
Copy link

Not working , "Will backup 30368 to temporary/backup_1487883088.zip
ERROR: Could not add file: ./.."

@TheLEAX
Copy link

TheLEAX commented Nov 23, 2017

Hello, without manually creating folder "temporary", where zip.php is located on ftp, it wouldnt work :)
Maybe thats what others encountered too.

@crowdprojects
Copy link

crowdprojects commented Dec 2, 2019

Is anyone going to add to this to fix up the basic errors and make it more useable. such as being able tto put backup in ANY folder in the root /public_html or /htdocs folder (chosen by user on some kind of UI/Interface which could have other options also)? A design for interface is needed also IMHO. Tweet Me if you want to work on this with me @Code_Collective

@AliM1988
Copy link

Will backup 5 to temporary/backup_1657823074.zip
Archive created successfully with 5 files.

So, where is the temporary folder?

@samuelmf
Copy link

There are any bash version to compress public_html and send to remote destination?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment