Hey,
I'm running EasyPHP with a few SQL databases...
How do I setup a scheduled automatic backup of the SQL?
On my 'real' web servers, I do so using a cronjob running a script, similar to the below:
date=`date -I` ; mysqldump -a -u XXXXXX -pYYYYYY ZZZZZZZ | gzip > /home/WWWWWW/database_$date.sql.gz ; mutt -s "Backup ($date)" -n -a /home/WWWWWW/database_$date.sql.gz
email@email.com < /dev/null
Or use a built in backup scheduler in Plesk/Control Panel.
However with easyphp/sql, I don't have access to running cronjobs, or of course a built in backup function.
Is there any simple way to automate it?
Cheers
Rob