PluginProbe ʕ •ᴥ•ʔ
JetBackup – Backup, Restore & Migrate / 3.1.22.3
JetBackup – Backup, Restore & Migrate v3.1.22.3
3.1.22.3 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.8.1 1.4.9 1.5.0 1.5.1 1.5.1.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.0 1.6.10 1.6.11 1.6.12 1.6.13 1.6.15 1.6.5.1 1.6.8.8 1.6.9 1.6.9.1 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7.5 2.0.8.7 2.0.9.11 2.0.9.14 2.0.9.15 2.0.9.6 2.0.9.7 2.0.9.9 3.1.10.7 3.1.11.1 3.1.12.3 3.1.13.4 3.1.14.17 3.1.15.4 3.1.16.1 3.1.17.5 3.1.18.10 3.1.18.8 3.1.18.9 3.1.19.8 3.1.20.3 3.1.21.3 3.1.7.9 3.1.9.2 trunk 1.1.90 1.1.91 1.2.0 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2
backup / public / views / settings / restore.htm
backup / public / views / settings Last commit date
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>