vote up 2 vote down star

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

flag

4 Answers

vote up 6 vote down check

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|flag
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 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 at 13:00
Yeah sorry as Alexander says its for 5.2.0 or later – Paul Dixon Jun 26 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 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 at 13:15
show 6 more comments
vote up 0 vote down

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|flag
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 at 12:45
Yes, that would do it. – alexn Jun 26 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 at 13:32
vote up 0 vote down

Erm...

Why use PHP for this kind of things?

tar -czvvf somearchive.tar.gz file1 ... filen

I recommend file1 be a common root directory and hence also filen

link|flag
vote up 0 vote down

Thank you.

link|flag

Your Answer

Get an OpenID
or

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