Skip to content

henrytrager/BackupTask

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BackupTask can help you to backup your directories and databases

Create directories and databases backup, upload it to local directory or to ftp and send notification email with detail statistics.

Requirements

  • PHP 5.3
  • Unix OS

Installation

Download library

git clone git://github.com/AlexeyFreelancer/BackupTask.git
git clone git://github.com/symfony/ClassLoader.git

Configure

cp ./BackupTask/config.dist.php config.php

Change settings in config.php

Usage

Create new file backup.php with following code

<?php

require_once 'ClassLoader/ClassLoader.php';

use Symfony\Component\ClassLoader\ClassLoader;

$loader = new ClassLoader();
$loader->register();
$loader->addPrefix('BackupTask', '.');

$config = include 'config.php';
$backupTask = new BackupTask\BackupTask($config);

try {
        $backupTask->run();
} catch (Exception $e) {
        echo $e->getMessage();
}

Configure cron job

@daily  /usr/bin/php /path/to/backup.php daily
@weekly /usr/bin/php /path/to/backup.php weekly
@monthly /usr/bin/php /path/to/backup.php monthly

About

Backup files and databases, save in local folder or upload to shared server and send notification

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%