Log in

View Full Version : A Backup


oninuva
06-14-2006, 11:06 AM
how do i have an auto back up like every 2 hours?

corn dog
06-14-2006, 04:51 PM
how do i have an auto back up like every 2 hours?
I think you have to have a certain server.

Ntfu2
06-14-2006, 05:06 PM
Do you just want to backup the database every 2 hours? Or your entire site?

Either way you'll want either a cron job to do it for you, of there are a couple custom scripts out there that will help

Mastar
06-26-2006, 12:24 PM
Cron Job



mysqldump -u (Username) -p (Password) (DB Name) | gzip > /(Location Of Where You Want To Save The BackUp) mysql_backup.gz