vote up 0 vote down star

So I have a client who's current host does not allow me to use tar via exec()/passthru()/ect and I need to backup the site periodicly and programmaticly so is there a solution?

This is a linux server.

flag

Seems like an odd limitation. – Brian C. Lane Dec 2 '08 at 5:36
But not entirely on common, many hosts just block the usage entirely instead of chjail'ing users. – Unkwntech Dec 2 '08 at 5:49
Right, but it is silly, given the power of PHP to interact with the filesystem. – Brian C. Lane Dec 2 '08 at 15:23

2 Answers

vote up 3 vote down

There is the Archive_Tar library. If that can't be used for some reason, the zip extension might be another option.

link|flag
You posted while I was typing but I'll keep mine here since it has the code. – Unkwntech Dec 2 '08 at 5:38
vote up 2 vote down check

At http://pear.php.net/package/Archive_Tar you can donload the PEAR tar package and use it like this to create the archive:

<?php
require 'Archive/Tar.php';
$obj = new Archive_Tar('archive.tar');
$path = '/path/to/folder/';
$handle=opendir($path); 
$files = array();
while(false!==($file = readdir($handle)))
 {
    $files[] = $path . $file;
 }

if ($obj->create($files))
 {
    //Sucess
 }
else
 {
    //Fail
 }
?>
link|flag

Your Answer

Get an OpenID
or

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