blarg3891

  • Dec 22, 2024
  • Joined Oct 28, 2024
  • 0 best answers
  • FYI this is not my script so all the credit to this fellow who wrote it and shared.

    I had been looking for a simple, current, working script for backing up to remote storage. Also a documented way to restore from said backup. I found the following which works perfect, I have tested. Its simple and works well. There is no restore script but I am including the steps below. You could easily script it but restores don't happen as often as backups so maybe not a big deal.

    You will need to adjust the script's storage piece to fit your own purposes but its just using rclone and is thus simple stuff.

    https://github.com/josephcy95/wpbackup

    Restore steps

    1. cd to /var/www

      • rename current domain "domain.com" -> "domain.com-old"
      • rclone copy remote:sites/domain.com domain.com
      • tar --zstd -xvf backup-file.tar.zst
    2. cd to /var/www/domain.com/htdocs

      • wp db reset --yes --allow-root

      • wp db import /var/www/domain.com/2024-11-09_20-37-domain.com.sql --allow-root
        a. this will restore db files to /var/lib/mysql/domain.com…etc
        b. db name is stored in wp-config.php

    3. rm backup files from /var/www/domain.com

  • blarg3891 Actually I figured it out. I saw errors about chunking and just disabled this feature. Its working now.

    in tinyfilemanager.php

    chunking: false
    forceChunking: false

  • bigsneip Wondering if you have issues where uploads greater than a certain size are automatically being split into different files? I have been looking to find where this limit is set but did not find yet.

    Hosted by VirtuBox