automation.htm
10 months ago
general.htm
4 months ago
integrations.htm
1 year ago
logging.htm
1 year ago
maintenance.htm
1 year ago
notifications.htm
1 year ago
performance.htm
1 year ago
restore.htm
1 year ago
security.htm
4 days ago
updates.htm
1 year ago
restore.htm
73 lines
| 1 | <div class="pd-20 settings"> |
| 2 | |
| 3 | <div class="form-group row"> |
| 4 | <label for="RESTORE_COMPATIBILITY_CHECK" class="col-sm-3 col-form-label jb-label">{{ lang.t('Compatibility Check') }}</label> |
| 5 | <div class="col-sm-9"> |
| 6 | <div class="pd-3 switch-main"> |
| 7 | <label class="switch"> |
| 8 | <input id="RESTORE_COMPATIBILITY_CHECK" |
| 9 | type="checkbox" |
| 10 | ng-model="saveData.RESTORE_COMPATIBILITY_CHECK" |
| 11 | ng-true-value=1 |
| 12 | ng-false-value=0> |
| 13 | <span class="slider round"></span> |
| 14 | </label> |
| 15 | <p class="pd-3">{{ lang.t('Enabling this flag ensures that the backup environment is checked against the local system for compatibility. When disabled, the plugin will skip this verification, which may lead to unexpected results or fatal errors during the restore process.') }}</p> |
| 16 | </div> |
| 17 | </div> |
| 18 | </div> |
| 19 | |
| 20 | <div class="form-group row"> |
| 21 | <label for="RESTORE_ALLOW_CROSS_DOMAIN" class="col-sm-3 col-form-label jb-label">{{ lang.t('Cross-Domain Restore') }}</label> |
| 22 | <div class="col-sm-9"> |
| 23 | <div class="pd-3 switch-main"> |
| 24 | <label class="switch"> |
| 25 | <input id="RESTORE_ALLOW_CROSS_DOMAIN" |
| 26 | type="checkbox" |
| 27 | ng-model="saveData.RESTORE_ALLOW_CROSS_DOMAIN" |
| 28 | ng-true-value=1 |
| 29 | ng-false-value=0> |
| 30 | <span class="slider round"></span> |
| 31 | </label> |
| 32 | <p class="pd-3">{{ lang.t('Enable restoring backups created for one domain (e.g., Domain X) on a different domain (e.g., Domain Y). This is useful for migrations but should only be allowed if intentional. By default, this action is restricted to protect against accidental domain mismatches.') }}</p> |
| 33 | </div> |
| 34 | </div> |
| 35 | </div> |
| 36 | |
| 37 | <div class="form-group row"> |
| 38 | <label for="RESTORE_ALTERNATE_PATH" class="col-sm-3 col-form-label jb-label">{{ lang.t('Alternate Restore Path') }}</label> |
| 39 | <div class="col-sm-9"> |
| 40 | <div class="pd-3 switch-main"> |
| 41 | <label class="switch"> |
| 42 | <input id="RESTORE_ALTERNATE_PATH" |
| 43 | aria-label="Enable/Disable alternate path" |
| 44 | type="checkbox" |
| 45 | ng-model="saveData.RESTORE_ALTERNATE_PATH" |
| 46 | ng-true-value=1 |
| 47 | ng-false-value=0> |
| 48 | <span class="slider round"></span> |
| 49 | </label> |
| 50 | <p class="pd-3">{{ lang.t('Enable this option to access the restore file from the plugin’s directory (/wp-content/plugins/backup/restore.php) instead of the default location (mysite.com/restore.php). Use this only if your hosting environment restricts access to the root public path.') }}</p> |
| 51 | </div> |
| 52 | </div> |
| 53 | </div> |
| 54 | |
| 55 | <div class="form-group row"> |
| 56 | <label for="RESTORE_WP_CONTENT_ONLY" class="col-sm-3 col-form-label jb-label">{{ lang.t('Restore wp-content only') }}</label> |
| 57 | <div class="col-sm-9"> |
| 58 | <div class="pd-3 switch-main"> |
| 59 | <label class="switch"> |
| 60 | <input id="RESTORE_WP_CONTENT_ONLY" |
| 61 | aria-label="Enable/Disable restore wp-content only" |
| 62 | type="checkbox" |
| 63 | ng-model="saveData.RESTORE_WP_CONTENT_ONLY" |
| 64 | ng-true-value=1 |
| 65 | ng-false-value=0> |
| 66 | <span class="slider round"></span> |
| 67 | </label> |
| 68 | <p class="pd-3">{{ lang.t(' Enable this option to restore only the wp-content folder while ignoring all other WordPress files. This is useful for hosting environments that restrict changes outside the wp-content directory.') }}</p> |
| 69 | </div> |
| 70 | </div> |
| 71 | </div> |
| 72 | |
| 73 | </div> |