Hi,
If you look in class-updraftplus.php, there’s a hook in boot_backup() that your developer could take advantage of.
Best wishes,
David
Hi David,
Can you let me know exactly what I need to change? or is there a documentation somewhere? I am the developer 🙂
Thanks!
public function backup_files() {
# Note that the "false" for database gets over-ridden automatically if they turn out to have the same schedules
$this->boot_backup(true, false);
}
public function backup_database() {
# Note that nothing will happen if the file backup had the same schedule
$this->boot_backup(false, true);
}
For instance here, do I just change them to boot_backup for the other servers?