GoZen Host runs daily automated backups on all shared and WordPress hosting plans using Backuply. Your files, databases, and email data are backed up offsite so they’re available even if the server has a hardware failure.

What Gets Backed Up

ComponentIncludedFrequency
Website files (public_html/)Daily
MySQL databasesDaily
Email dataDaily
cPanel settingsDaily

Backups are stored offsite - not on the same server as your account. This means they survive disk failures and other server-level issues.

Automated Backups with Backuply

Backuply handles automated offsite backups on GoZen Host shared hosting. Backups run daily and are retained based on your plan.

To check your backup status:

  1. Log into cPanel
  2. Look for Backuply in the Files section
  3. You’ll see your most recent backup dates and status

Creating a Manual Backup in cPanel

If you want to create a backup right now (before a major update, migration, or theme change):

Full Account Backup

  1. Go to FilesBackup in cPanel
  2. Under Full Backup, click Download a Full Account Backup
  3. Choose the backup destination (Home Directory is fine for download)
  4. Click Generate Backup
  5. When it’s ready, download it from the same page

This creates a compressed archive of everything - files, databases, email, and settings. Use this for migrations or as an emergency snapshot.

Partial Backups

On the same Backup page, you can download individual components:

  • Home Directory - all files
  • MySQL Databases - select a specific database to download as .sql.gz
  • Email Forwarders and Filters - configuration exports

Quick Database Backup via phpMyAdmin

For a fast database-only backup:

  1. Go to DatabasesphpMyAdmin
  2. Select your database
  3. Click ExportQuickGo
  4. Save the .sql file

This is the fastest way to grab a database snapshot before testing a plugin update or running a migration script.

Restoring from a Backup

Restoring Files

  1. Go to FilesBackup in cPanel
  2. Under Restore a Home Directory Backup, click Choose File
  3. Select your backup archive
  4. Click Upload

cPanel will overwrite existing files with the backup versions. Only the files in the backup are affected - files that didn’t exist at backup time won’t be deleted.

Restoring a Database

  1. Go to FilesBackup in cPanel
  2. Under Restore a MySQL Database Backup, click Choose File
  3. Select your .sql.gz file
  4. Click Upload

Requesting a Restore from GoZen Support

If you can’t access cPanel or need a backup from a specific date:

  1. Open a support ticket
  2. Specify what you need restored (files, database, or both)
  3. Include the approximate date you want to restore to
  4. Our team will handle it - usually within a few hours

VPS and Dedicated Server Backups

VPS and dedicated servers do not include automatic backups by default. You’re responsible for your own backup strategy.

Recommended approaches:

  • Snapshots - available from the client area for VPS plans. Creates a point-in-time image of your entire server
  • rsync to remote storage - automate daily backups to an external location
  • mysqldump + cron - schedule nightly database dumps

Example cron job for daily MySQL backups:

  # Runs daily at 3am, keeps backups for 7 days
0 3 * * * mysqldump -u root --all-databases | gzip > /backup/db-$(date +\%Y\%m\%d).sql.gz && find /backup -name "db-*.sql.gz" -mtime +7 -delete
  

Best Practices

  • Test your backups. A backup you’ve never restored is just a file you hope works. Restore to a staging environment periodically.
  • Keep offsite copies. Even with GoZen Host offsite backups, download a full backup to your local machine before major changes.
  • Back up before updates. WordPress core, plugin, and PHP version updates can break things. Take a snapshot first.
  • Document your restore process. When something breaks at 2am, you won’t want to figure it out from scratch.

What to Do Next

Last updated 05 Apr 2026, 00:00 +0200. history

Was this page helpful?