Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
A) a bash script run by cron:
- makes a zip archive of files
- dumps a mysql database and archives it
- connects to a remote computer and copies the resulting files to the
necessary applications: cron, zip, mysqldump, ftp
B) if it is a WP blog, and it is not a monstrous size of the database / files, then you can:
1) dump the database, breaking down requests by line
2) commit the dump + site files by cron and push it to the repository
C) most control panels can make a backup and send it to a third-party server, you need to communicate with the host
wget can download from FTP
mysqldump -u%username% -p%password% %database% > /backup/%database%.sql
will dump the database to the correct location.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question