I am creating a php backup script that will dump everything from a database and save it to a file. I have been successful in doing that but now I need to take hundreds of images in a directory and compress them into one simple .tar.gz file.

What is the best way to do this and how is it done? I have no idea where to start.

Thanks in advance

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

If you are using PHP 5.2>, you could use the Zip Library

and then do something along the lines of:

$images = '/path/to/images';
//this folder must be writeable by the server
$backup = '/path/to/backup';
$zip_file = $backup.'/backup.zip';

if ($handle = opendir($images))  
{
    $zip = new ZipArchive();

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

    while (false !== ($file = readdir($handle))) 
    {
        $zip->addFile($file);
        echo "$file\n";
    }
    closedir($handle);
    echo "numfiles: " . $zip->numFiles . "\n";
    echo "status:" . $zip->status . "\n";
    $zip->close();
    echo 'Zip File:'.$zip_file . "\n";
}
link|improve this answer
1  
Thanks Kev for the answer. I just need to clarify one little thing: did you mean to ask if I had a version of PHP lower than 5.2 or higher than 5.2. I currently have 5.2.6. As I understand your answer, I will not be able to run this because I have a PHP version to high. Is this correct? – VinkoCM Jun 26 '09 at 12:43
He means that you need a PHP version that's 5.2.0 or later, so you'll be fine. – alexn Jun 26 '09 at 13:00
Yeah sorry as Alexander says its for 5.2.0 or later – Paul Dixon Jun 26 '09 at 13:08
I just tried this and I get this error:<br> Fatal error: Class 'ZipArchive' not found in [...] on line 7. <br>What could cause this? I just contacted my web hosting provider to tell me if PHP is installed with the appropriate libraries. – VinkoCM Jun 26 '09 at 13:11
That would suggest to me that your host doesnt support the ZipArchive class, thy would need to compile PHP with zip support by using the --enable-zip configure option (us3.php.net/manual/en/zip.installation.php) – Paul Dixon Jun 26 '09 at 13:15
show 6 more comments
feedback

You can easily gzip a folder using this command:

tar -cvzpf backup.tar.gz /path/to/folder

This command can be ran through phps system()-function.

Don't forget to escapeshellarg() all commands.

link|improve this answer
Thank you Alexander for you answer. How would this look like in php? Would it go something along the lines of: system('tar -cvzpf my_backup.tar.gz /images_water/images_rivers/'); – VinkoCM Jun 26 '09 at 12:45
Yes, that would do it. – alexn Jun 26 '09 at 13:00
Unfortunately this does not work for me because my hosting provider has set security restrictions on exec/system commands. – VinkoCM Jun 26 '09 at 13:32
feedback

You can also use something like this:

exec('tar -czf backup.tar.gz /path/to/dir-to-be-backed-up/');
link|improve this answer
feedback

protected by Robert Harvey Mar 19 at 15:09

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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