You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
I am working on an app that makes use of Dizda_cloud_backup to be able to make backups of the DB when needed.
Then the same app also has a bundle written for it that allows the entire app to be upgraded when needed. But upgrades can go wrong at times, so it is written to make a backup first of the DB and the app files itself using dizda. To be able to also backup the app files I have to tell dizda about its location.
This is where the getter comes in as it can be used to access the ProcessorManager and the addFolder settter of the ProcessorManager is then used to add the said folder.
And a command that will be called from a cron job will also be added to the app. This command will make a backup using dizda (of only the DBs) and then email it to a specific user. Here access to the ProcessManager is also needed to be able to call getArchivePath to include it in the email.
The text was updated successfully, but these errors were encountered:
Yes, it seems that those will be a great solution for both cases - using the FilesystemEvent to be able to add the extra folder (as is suggested) and possible getting the backup (or just the name) from the BackupEvent.
These events will then probably also make the setters added in #75 obsolete.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Note this issue related to PR #88 and #75.
I am working on an app that makes use of Dizda_cloud_backup to be able to make backups of the DB when needed.
Then the same app also has a bundle written for it that allows the entire app to be upgraded when needed. But upgrades can go wrong at times, so it is written to make a backup first of the DB and the app files itself using dizda. To be able to also backup the app files I have to tell dizda about its location.
This is where the getter comes in as it can be used to access the ProcessorManager and the
addFolder
settter of the ProcessorManager is then used to add the said folder.And a command that will be called from a cron job will also be added to the app. This command will make a backup using dizda (of only the DBs) and then email it to a specific user. Here access to the ProcessManager is also needed to be able to call
getArchivePath
to include it in the email.The text was updated successfully, but these errors were encountered: