# BD Backup vs UpdraftPlus
UpdraftPlus has been the default WordPress backup plugin for over a decade and runs on more than three million sites. The free version alone supports Google Drive and Dropbox out of the box, the Premium add-on supports basically every cloud storage provider that exists, and UpdraftClone is a genuinely good site-migration tool. None of this is in dispute.
BD Backup is smaller and newer. It does full-site backups (files + database in one PclZip archive), database-only backups, scheduling via WP-Cron, and chunked AJAX so backups don’t hit `max_execution_time` on shared hosting. That’s the v1.0.0 feature surface — there is no remote-storage integration shipped yet, no incremental backups, no migration tool, no encryption at rest.
The architectural choice that defines BD Backup is using PclZip instead of ZipArchive. ZipArchive is a PHP extension that’s faster but isn’t installed everywhere — and on the kind of cheap LiteSpeed/cPanel hosts that BD’s customer base actually uses, it’s missing more often than people realize. PclZip is pure PHP, slower, but it works on any host that can run WordPress at all. It’s a deliberate trade for reliability over speed.
UpdraftPlus’s headline advantage is the remote-storage matrix. If you want backups pushed nightly to S3, Backblaze, Google Drive, Dropbox, OneDrive, Azure, or SFTP, UpdraftPlus does that in the plugin with OAuth flows for each. BD doesn’t, and pretending otherwise would be dishonest. The workaround is to back up locally with BD and sync `wp-content/uploads/backups-bdbk/` off-site via rclone or your host’s snapshot tooling — which is what many agencies do anyway, but it does mean leaving the WordPress admin UI to set up.
Where BD makes sense: you’re already running BD plugins (Security Firewall, Auto Blog, Speed Optimizer) and want one license dashboard, you don’t trust a third-party plugin with OAuth tokens to your cloud storage, or you’ve been burned by UpdraftPlus’s free tier nagging you to upgrade and want a simpler tool. The pricing is also notably tighter at 3 sites ($99 vs $145), though UpdraftPlus’s unlimited tier ($195) is competitive with BD’s ($199).
Where UpdraftPlus makes more sense: anyone who needs push-to-cloud as part of the plugin, anyone migrating sites between hosts regularly (UpdraftClone is worth the price by itself), and anyone with a backup history they don’t want to break by switching tools. We’re not going to argue you out of using a tool with three million installs and a decade of restore-test history if that’s what you have today — we’d rather you stayed on it than switched and regretted it.