Skip to content

Powered by Grav

Faster cloning and migration (FastTrack and MyQuick)

Faster cloning and migration (FastTrack and MyQuick)

By default, cloning and migrating are already fast, and they run some safety checks first. If you're doing a lot of these — say a bulk of copies — you can turn on two optional switches that trade a little safety, or a little convenience, for speed. These are small control files you create in your own shell (or over SFTP). They live under your account's static/control/ folder, and creating one is all it takes — the file's contents don't matter.

You don't need these for everyday use. Reach for them only if the default speed isn't enough for what you're doing. Everything else about the two tasks — what Clone and Migrate each do, and the safe way to use them — is on Cloning and moving a site.

FastTrack — skip the pre-flight checks

Before each clone or migrate, the system normally verifies the site and the platforms involved, to catch problems before they can break the job. That's the safe default, and it's what you want for a one-off.

If you're running many clones or migrates back to back and don't want those checks repeated every single time, create this file:

TXT
~/static/control/FastTrack.info

With it in place, the site and platform verifications are skipped, so each job starts sooner — and it also skips the extra re-verify that normally runs automatically after you import a platform. The trade-off is real: those checks exist to catch a broken setting or a missing module early, before it can leave a copy half-built. Skip them only when you've already confirmed everything is healthy and you're doing this in bulk.

To go back to the safe default, deleting FastTrack.info on its own isn't enough — you also create an empty ClassicTrack.info to switch the pre-flight checks back on. Two steps, in your shell:

TXT
touch ~/static/control/ClassicTrack.info
rm ~/static/control/FastTrack.info

The ClassicTrack.info file is what restores the "verify first" behaviour; the system treats it as the on-switch for those extra checks.

MyQuick — parallel database copy

By default, the system already uses a fast, parallel per-table method to copy your database during clone and migrate — so large, complex databases finish in minutes rather than hours. This is on for you out of the box, and there's nothing to switch on.

There's one thing to be aware of. Because of how this fast method packages things, the on-demand Restore task in the control panel needs the older, single-file database format inside a site's backup archive — and the fast method doesn't put one there. In practice this doesn't affect your safety net: the system keeps separate nightly backups of every site regardless.

If you specifically want a fresh backup you can Restore from, you almost never need to touch anything account-wide. When you run the Backup task on a site, the form offers a Backup Mode with three choices:

  • Classic single file mysqldump only — just the database, in the classic single file.
  • Site files without any DB — your files, no database.
  • Site files with classic mysqldump DB — files and a classic single-file database.

Only that last one, Site files with classic mysqldump DB, produces an archive the Restore task can use — and choosing it makes just that one backup bypass the fast method, without changing anything else. So the simplest way to get a restore-ready backup is: run Backup, pick Site files with classic mysqldump DB. Everything else stays on the fast default.

If instead you'd rather your account always produce classic, restore-ready backups — say you take a lot of manual backups and don't want to remember the mode each time — you can switch the fast method off for the whole account by creating:

TXT
~/static/control/MyClassic.info

With that file present, backups go back to including the single-file database dump the Restore task expects — at the cost of slower clone, migrate and backup times on large databases. Remove the file to return to the fast default:

TXT
rm ~/static/control/MyClassic.info

If none of this sounds like something you need, it isn't — leave both alone, pick the right Backup Mode on the rare occasion you need a restore, and everything just works.

  • Cloning and moving a site — what Clone and Migrate each do, and the safe one-thing-at-a-time path these switches accelerate.
  • Everyday site tasks — the Backup and Restore tasks, and the Backup Mode options referred to above.
  • Backing up and restoring — how your site's nightly and on-demand backups work, and when a MyQuick archive can and can't be restored.
  • Control-file reference — the exact names and locations of FastTrack.info, ClassicTrack.info and MyClassic.info.

© 2026 BOA Documentation. All rights reserved.