Howto: Automatic cPanel Backups

Intro: As many web devs know, the web hosting panel, cPanel, has quite a powerful “full backup” feature. The only problem is that if you want a full backup, you have to log into cPanel, navigate to the backup page, click the backup button, wait for the backup to finish, and then download it. If you’re like me, and would like to make sure I have frequent backups of everything, making backups can get annoying.

The following is a short 5 minute tutorial to set up your cPanel to automatically create backups and store them (for free) in another remote location via FTP using a PHP script and cPanel’s cron jobs.

Requirements:
1. Your cPanel login information
2. (Optional) A remote FTP location to store backups

Step 0 (Optional) – Get a FTP server to store backups:
Getting a remote place to store your backups is important. I highly recommend you check out Box (similar to Dropbox), which has a FTP uploading feature. For a list of free web hosts, click here (Make sure you read their AUP). Any server/web host will do, as long as you can FTP into them.

Step 1 – Get the backup script:
Visit this page to generate the PHP script that will run the backups. Fill out your cPanel information as well as your FTP server info, if you are using one. After you hit the submit button, copy the generated PHP code and save it as backup.php. Put the backup.php file into your cPanel Home directory (Go into your file manager and click “Home”)

Step 2 – Set up cron:
Go to your cPanel homepage and press the “Cron jobs” link. In the “Add New Cron Job” section, select from “Common Options” how often you want to create a backup (or customize your own interval). I suggest once a day. You can choose once a week if your website is static or doesn’t change much. In the “Command” field, type php -f ~/backup.php. Press the add button and you’re done!

That’s it! Pretty simple and effective way to make sure you always have backups. It’s even possible to upload to two different FTP servers, just create two backup scripts and cron jobs. Make sure you log into your remote backup FTP server to download and remove old backups.

Bonus: Here’s a script you can put onto your remote server (in the same directory as your backups) that will automatically delete backups older than 7 days to save storage space. Add it as a cron job and you’ll be set for worry-free backups!

44 Comments
Inline Feedbacks
View all comments

[…] 4. Howto: Automatic cPanel Backups / Eric Zhang [Xeroday] […]

[…] 4. Howto: Automatic cPanel Backups / Eric Zhang [Xeroday] […]

[…] Hay una forma de obtener un "full-backup" mediante scripts y obtener el archivo backup exactamente igual al que generamos mediante el asistente descrito en la forma manual, pero es un tanto más complejo y actualmente no disponible, ya que desde la versión Cpanel & WHM 11.25 implementaron los "security tokens" (más información aquí ) con lo cual ya no se puede hacer el intento de backup mediante una url concatenada como hasta aquel entonces, al menos no he podido hacerlo en las veces que he intentado, pero si quieres intentarlo o saber a lo que me refiero visita este… Read more »

John
4 years ago

If you don’t want to set up a remote ftp or ssh connection here is a nice trick to automate the backup but at the same time don’t expose your remote credentials:
https://diy.2pmc.net/cpanel-auto-remote-backup-script-without-remote-credentials/

Bratislav
4 years ago

Thank you. This is excellent!

teresa
4 years ago

How do I do a Home Directory backup?

1 3 4 5