<?php
/* w3easyBackup Configuration */
### BACKUP SETTINGS
// general backup settings
$configBackupDir = 'backup/'; // backup directory
$configEmail = 'hide@address.com'; // email address for backup file
// files and folders to backup resp. to skip
// root files
$root_files = ''; // backup rootfiles? 'yes' or ''
// directories/files to backup (full rel. path | folder with trailing slash)
$configBackup[] = 'docs/';
$configBackup[] = 'modules/';
// directories/files to skip (full rel. path)
$configSkip[] = 'docs/license.txt';
// Databases you wish to backup, can be many
// (if tables array contains table names,
// only those tables will be backed up)
/*
$configBackupDB[] = array(
'server' => 'localhost',
'username' => 'root',
'password' => 'password',
'database' => 'databasename',
'tables' => array ()
// or:
// 'tables' => array('table_1', 'table_2', 'table_3')
);
*/
?>