UpdraftPlus hosting where the backup actually finishes.
A backup plugin has the hardest job on a WordPress site: read everything, compress it, and ship it elsewhere, all inside a request that was only ever meant to render a page.
Everything a backup plugin asks of a host.
Every other plugin does a little work per request. This one tries to do all of it at once.
Jobs that resume instead of restarting
UpdraftPlus splits a backup into resumable chunks and relies on being called back. On WP-Cron that callback waits for a visitor, so a nightly backup on a quiet site never gets past the first chunk.
Temp files that do not fill the disk
An archive is written beside the site before it is uploaded. A 6 GB site briefly needs 6 GB more, and the failure mode is a full disk that takes the site down with it.
Memory sized for compression, not for a page
Zipping a media library is the most memory-hungry thing your site will ever do. A limit tuned for rendering a post is what produces a half-written archive and no error.
Remote uploads that survive a slow link
Sending to Drive, S3 or Dropbox is a long transfer inside a PHP process. Execution limits meant for page requests kill it partway and leave a partial file at the far end.
One backup system, not two
We already take daily off-site backups. Running both without deciding which is authoritative is how a restore reaches for the copy nobody was maintaining.
Know the archive is complete.
An untested backup is a rumour. The failure here is silent by design: the job stops, the log says it started, and nobody looks until the day it is needed.
- Alert when a backup job stops before it finishes
- Temp space monitored separately from site storage
- One-click admin login
- Restore any daily backup from the dashboard
A backup running while the site serves.
Compression is CPU-bound and reading the media library is disk-bound, and both are happening on the machine that is meant to be answering requests.
What we change for UpdraftPlus
These differ from a standard WordPress site on the same plan, and each follows from a plugin that has to read the whole site inside a web request.
| Setting | What we do | Why |
|---|---|---|
| Backup job scheduling | Driven by the platform scheduler so resume callbacks always fire | UpdraftPlus works in resumable chunks and needs to be called back to continue; on visitor-triggered cron a quiet night means the job stalls after its first chunk and reports nothing. |
| Temporary archive space | Staged outside the site's storage quota and swept after a failed job | The archive is written next to the site before upload, so a large library momentarily needs its own size again in free space - and a failed job leaves that copy behind until something removes it. |
| Job memory limit | Raised for the backup process only | Compressing a media library is the peak memory event in a site's life, and a limit sized for rendering a page truncates the archive without raising an error anyone sees. |
| Remote upload timeouts | Extended for storage transfers rather than globally | Shipping several gigabytes to object storage takes far longer than any page request should, and the shared timeout aborts it mid-transfer leaving a partial file at the destination. |
| Backup ownership | Decided explicitly between the plugin and the platform | Two backup systems running unaware of each other doubles the disk and CPU cost, and makes it ambiguous which copy a restore should trust. |
Simple, transparent pricing.
Every plan includes free migration, daily backups, SSL and 24/7 support.
- 1 WordPress site
- 10 GB NVMe disk
- Free SSL
- Daily backups
- One-click deployment
- Support tickets
- 5 WordPress sites
- 50 GB NVMe disk
- Free SSL
- Daily backups
- One-click deployment
- Priority support tickets
- 20 WordPress sites
- 200 GB NVMe disk
- Free SSL
- Daily backups
- One-click deployment
- Dedicated support
Questions, answered.
Why does my UpdraftPlus backup stop halfway?
Do I still need UpdraftPlus if you take backups?
Backups fail on my large media library. Why?
Why did my disk fill up during a backup?
Can I send backups to my own Google Drive?
Run UpdraftPlus on a host that expects the whole site to be read.
Free migration, jobs that resume on schedule, and temp files that never fill your disk.