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.
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
[Added] Backup button
[Added] Backup button
You do not have the required permissions to view the files attached to this post.
Re: [Added] Backup button
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);
}
}