myBackup Database Backup is a PHP script that is executed either on a scheduled basis or manually via your browser. For more visit http://www.scripts.oldguy.us/mybackup/
Thank you, its a good but, No option to restore from backup, like all scripts I've found, Is there scripts that can restore from backup for people that dose not have WHM and restore options ?
A 2 second search on Google and found this - http://codecanyon.net/item/easy-mysql-backup-restore/58387
Yes, I found this one before but only backup and restore the database, no files will be restored or backup Yes, also a codecanyon Its dose not have restore option, it have option to backup files and databases but there are no restore option.
Somthing like this will do it: (php script in root) // create mysql backup $databaseFile = 'db_backup.sql'; exec('mysqldump ' . MYSQL_DB_NAME . ' -u' . MYSQL_USER . ' -p' . MYSQL_PASS . ' > ' . $databaseFile); // create backup $archiveFile = 'codebaseIncDb.tar.gz'; exec('tar -pczf ' . $archiveFile . ' * 2>&1'); PHP: Write the reverse in php to create a restore script. The database dump file is in sql so it can be run directly against the db.
Is there a backup script that backs up all files, subfolders and their contents and the mysql database, then zips it up and sends it to an email address? I'm sure the file would be huge and I'm not sure what parameters my server would allow but I'll delve into that if I found a script to do such a thing. Oh, and free is definitely a requirement.