Empower growth and innovation with the latest Website Dev insights

If no one maintains the website, is a backup still worth it?

Sep 10, 2026 Read: 5

You need backups, but not necessarily every day. For a custom-built website, even if it looks unmaintained and never updated, the program files, databases, and visitor-generated data on the server are quietly changing. Based on 2026 project delivery habits, backup frequency is not determined by maintenance frequency, but by how long you can accept losing data after changes occur. Simply put, as long as the website is still running, you should keep at least one recoverable backup, with the recovery steps tested in advance.

Can a website that is "never updated" really lose data suddenly?

Many companies assume that no updates means the website is static, but the server is always running. The most common data-loss scenarios include: a hard drive suddenly fails, a cloud provider outage, an administrator accidentally deleting a section or configuration, data being wiped after a brute-force attack, or the original directory being overwritten during migration. These risks do not disappear just because updates are rare. In fact, because no one is watching, the failure may only be discovered much later.

In project delivery, we have seen clients discover more than half a year after launch that they cannot log in to the admin panel, only to find the database had long been corrupted. These problems are not directly related to content update frequency. The passing grade for a backup is not "it was done," but "it can be restored, and you know the expected recovery time." If the backup package has never been tested, at the critical moment you may well find the files are corrupted or attachments are missing.

How to decide backup frequency? Start with a four-dimension self-check

Backup frequency should not be decided on a whim. When we design backup plans for companies, we first apply four dimensions: data change frequency, acceptable loss duration, rebuild cost, and budget and manpower. Daily orders or messages are high frequency; changing news a few times a week is medium frequency; no changes for three months is low frequency. If you can accept losing one week of data, the backup interval does not need to be compressed to daily.

  1. Data change frequency: Daily orders, messages, or member registrations are high frequency; occasional page changes are medium frequency; long periods without changes are low frequency.
  2. Acceptable loss duration: If you can accept losing one day, back up daily; if you can accept losing one week, weekly backups are fine.
  3. Rebuild cost: Can product images and articles be recovered locally? Can historical customer records be re-entered? The harder it is to rebuild, the stricter the backup requirements.
  4. Budget and manpower: Whether you are willing to pay for object storage or automated backup tools determines how complete the solution can be.

Based on common practices in 2026, the experience range is: websites with daily transactions or lead capture should back up daily; showcase sites updated weekly should back up weekly; brand websites that are almost never updated should have at least one full backup per month and retain more than three months of recent historical versions. This is only a reference value and should be adjusted to your own situation.

A backup that has never been tested for recovery is equal to no backup. So at the end of a project, we proactively run a recovery drill to confirm the backup package can be decompressed, the database can be imported normally, and attachments can be retrieved.

Where should backups be stored? Three options to choose from

Storage location affects security and recovery speed. The fear is not having no backup, but having the backup and the original data "live and die together." Here are the differences between three common storage methods:

  • Server snapshots: Generated with one click in the cloud console, fast to restore, and suitable for emergency rollback. But they usually only last from a few days to a few weeks and depend on the same provider, so they cannot serve as a long-term independent backup.
  • Object storage or offsite backup: Automatically transfers backups to an independent location, so they can still be retrieved even if the provider fails. Cost is calculated by storage volume; for a typical corporate website, the experience range for monthly spending is within a few dozen yuan, offering high cost-effectiveness.
  • Local download: The lowest cost, using only an external hard drive, but it requires regular manual operation and is easy to miss, making it suitable as a third copy.

We recommend keeping two physical locations under a "one primary, one backup" approach. Do not put backups in the website root directory, and do not store them on the same disk as the database files; otherwise, when a total failure occurs, the backup will disappear along with everything else. We remind clients every quarter to download a complete compressed package. Even with automated tasks, keep a local copy.

If data is really lost, what recovery order keeps things from becoming chaotic?

After discovering data loss, do not rush to rebuild or find someone to fix it. Checking in the following order can save you detours:

  1. First find the most recent backup, restore to the backup point in time, and check whether the data is complete.
  2. If the backup is unavailable, go to the cloud provider console to find snapshots or the recycle bin.
  3. If still unavailable, look for historical versions in old local compressed packages or on colleagues' computers.
  4. Only as a last resort consider disk data recovery services; they are expensive, time-consuming, and do not guarantee success.

Before recovery, check version consistency: the backed-up database must match the website program version, otherwise errors may occur; the attachment directory must also be restored, or all images will show as broken. Based on the experience range, when a usable backup exists, recovery usually takes from half an hour to a few hours; if there is no backup and you must rely on disk repair, it may drag on for days and still produce incomplete results.

In real delivery, we encountered a typical constraint: to save costs, the client kept only server snapshots and did not configure independent offsite backups. After an accidental deletion, the data could only return to the previous snapshot point, and all subsequent messages and inquiries disappeared. It took most of a day to manually re-enter them. In hindsight, configuring automatic offsite backup costs only a few dozen yuan per month, far less than the labor cost of re-entry. This is why we repeatedly emphasize "at least two physical locations" in projects.

Which websites can relax backups, and which cannot cut corners?

Backup resources should be allocated according to business value. There are usually three categories that need full backups: business websites that generate inquiries, form submissions, or transaction data daily; websites that carry brand image and will frequently go live with rollback needs; and websites whose data cannot be rebuilt from other systems.

Websites that do not need much investment also share common traits: pages are basically static, with no dynamic content or interaction records; original copy and design source files are in your own hands; and the cost of redoing them after loss is low. For this kind of digital business card website, the provider's default snapshot or a manual backup once a month is enough.

The boundary point is: as long as the website contains even one piece of manually entered data that is not backed up elsewhere, it should be included in the backup scope. This is not necessarily tied to whether the website was built cheaply or expensively. In 2026 projects, there are still cases where saving a few dozen yuan on backup costs ultimately led to spending thousands of yuan to recover data, and this deserves serious attention.

Frequently asked questions

Does a website no one maintains still need monthly backups?

It is recommended to do a full backup at least once a month. Even if the pages do not change, backend logs, configurations, and visitor messages may still change; keeping an additional local compressed package is safer.

Can built-in server snapshots be used as backups?

They cannot fully replace backups. Snapshots generally only last from a few days to a few weeks and are tied to the same provider. An independent backup should be placed in a second physical location, such as local storage or object storage.

Is it safe to put the backup compressed package in the website root directory?

It is not safe. Once the directory is compromised or accidentally deleted, the backup will be lost along with the website. You should download it to local storage or object storage, and delete the compressed package from the server after uploading.

Is it reliable if the website builder says they will back up for free?

You need to check the contract. A common experience range is free retention for 3 months to 1 year, after which it may be cleared. It is advisable to get a complete backup yourself and not rely entirely on the other party.

Will restoring a backup overwrite content uploaded later?

Yes. After restoring to the backup point in time, all data and changes added afterward will be rolled back. Before restoring, export the current state and confirm that you can accept the loss time window.


If you are still unsure how much to invest in backups, you can simulate two scenarios—"losing one day of data" and "losing one month of data"—estimate the losses separately, and then decide on backup frequency and storage plan. Three current priorities are: confirm the server has an automatic backup task, try restoring the most recent backup package once, and download a complete backup locally. Only after these three steps is the website no longer "running naked."

Interested in this topic?
10-year tech team — reference proposal within 24 hours
Obtain Proposal
Are you ready?
Then reach out to us!
+86-13370032918
Discover more services, feel free to contact us anytime.
Please fill in your requirements
What services would you like us to provide for you?
Your Budget
ct.
Our WeChat
Professional technical solutions
Phone
+86-13370032918 (Manager Jin)
The phone is busy or unavailable; feel free to add me on WeChat.
E-mail
349077570@qq.com
Submitted successfully
Thank you for your trust. We will contact you soon!
Recommended projects for you