Page 1 of 1

[Added] Backup button

Posted: Fri Jul 16, 2021 9:26 am
by admin
This will create an instant Database Backup (Database dump) using the open source library Mysqldump.php.

It is important to create and keep backups of your nuBuilder database to ensure you are able to restore them in the event of data loss. Downloading copies in the form of .sql files, can save you unnecessary stress and prevent future headaches.
backup.png
backup2.png

Re: [Added] Backup button

Posted: Fri Sep 24, 2021 2:15 pm
by admin

Re: [Added] Backup button

Posted: Tue Oct 05, 2021 10:13 pm
by admin
To show a confirm message before running the backup, add this JS in Setup -> Header:

Code: Select all

function nuRunBackup() {

    var r = confirm("Run the Backup?");
    if (r == true) {
        nuMessage(nuTranslate("Backup is running") + "...");
        nuRunPHPHidden("nubackup", 0);
    }

}