Okay, I’m using Evo1.0.4. I’ve set this up as a module and it works beautifully - except it does not include the database file in the zip.
Backup in process . . .
Start MySQL dump create . . . mtc_20100807_082121.sql Size: 760299 (742KB) . . . Finish MySQL dump create.
Start file list . . . File count: 7 . . . Finish file list.
Start zip archive . . . mtc_bkup_20100807_082121.zip Size: 16670 (16KB) . . . Finish zip archive.
Start MySQL dump delete . . . mtc_20100807_082121.sql Size: 760299 (742KB) . . . Finish MySQL dump delete.
PHP Version >= 5.2.0 - Peak memory usage: 1310720 (1MB)
Backup process complete . . .
I’ve commented out the lines in the source which remove the created mySQL dump file after the backup is complete, and get the following
Backup in process . . .
Start MySQL dump create . . . mtc_20100807_081805.sql Size: 760299 (742KB) . . . Finish MySQL dump create.
Start file list . . . File count: 7 . . . Finish file list.
Start zip archive . . . mtc_bkup_20100807_081805.zip Size: 16670 (16KB) . . . Finish zip archive.
PHP Version >= 5.2.0 - Peak memory usage: 1310720 (1MB)
Backup process complete . . .
The sql dump is created and placed in the archive folder, but NOT added to the zip.
Here is my config file
// Protect this file! It contains sensitive information about your website.
// ==================================================
// SECURITY
// ==================================================
login = true
timeout = 0
activity = false
user_pass0 = admin,xxxxxx
user_pass1 =
user_pass2 =
user_pass3 =
user_pass4 =
user_pass5 =
user_pass6 =
user_pass7 =
user_pass8 =
user_pass9 =
// ==================================================
// GENERAL
// ==================================================
site_url = http://localhost/mtc/
base_path = /home/murray/public_html/mtc/
bkup_dir = backup/
archive_dir = backup/archive/
archive_name = mtc_bkup
seconds = 120
megabytes = 256
// ==================================================
// DIRECTORIES
// ==================================================
dir0 = /home/murray/public_html/mtc/assets/css/,true
dir1 =
dir2 =
dir3 =
dir4 =
dir5 =
dir6 =
dir7 =
dir8 =
dir9 =
// ==================================================
// DATABASE
// ==================================================
mysql = 3
host =
user =
pass =
dbase1 =
dbase2 =
dbase3 =
dbase4 =
dbase5 =
dbase6 =
dbase7 =
dbase8 =
dbase9 =
// ==================================================
// THE END
// ==================================================
Any ideas?