config.php
5 years ago
config.wordpress.demo.php
5 years ago
config.wordpress.free.php
5 years ago
config.wordpress.php
5 years ago
config.wordpress.demo.php
75 lines
| 1 | <?php |
| 2 | |
| 3 | define('SG_USER_MODE', 1); |
| 4 | |
| 5 | define('SG_FEATURE_DOWNLOAD_FROM_CLOUD', 1); |
| 6 | define('SG_FEATURE_STORAGE', 1); |
| 7 | define('SG_FEATURE_FTP', 1); |
| 8 | define('SG_FEATURE_AMAZON', 1); |
| 9 | define('SG_FEATURE_DROPBOX', 1); |
| 10 | define('SG_FEATURE_GOOGLE_DRIVE', 1); |
| 11 | define('SG_FEATURE_ONE_DRIVE', 1); |
| 12 | define('SG_FEATURE_SCHEDULE', 1); |
| 13 | define('SG_FEATURE_DELETE_LOCAL_BACKUP_AFTER_UPLOAD', 1); |
| 14 | define('SG_FEATURE_ALERT_BEFORE_UPDATE', 1); |
| 15 | define('SG_FEATURE_NUMBER_OF_BACKUPS_TO_KEEP', 1); |
| 16 | define('SG_FEATURE_CUSTOM_BACKUP_NAME', 1); |
| 17 | define('SG_FEATURE_SUBDIRECTORIES', 1); |
| 18 | define('SG_FEATURE_BACKGROUND_MODE', 1); |
| 19 | define('SG_FEATURE_NOTIFICATIONS', 1); |
| 20 | define('SG_FEATURE_MULTI_SCHEDULE', 1); |
| 21 | define('SG_FEATURE_SHOW_UPGRADE_PAGE', 0); |
| 22 | define('SG_FEATURE_BACKUP_WITH_MIGRATION', 1); |
| 23 | define('SG_FEATURE_NUMBER_OF_ROWS_TO_BACKUP', 1); |
| 24 | define('SG_FEATURE_BACKUP_DELETION_WILL_ALSO_DELETE_FROM_CLOUD', 1); |
| 25 | define('SG_FEATURE_SLECTIVE_RESTORE', 1); |
| 26 | define('SG_FEATURE_HIDE_ADS', 1); |
| 27 | |
| 28 | //Storage |
| 29 | define('SG_STORAGE_FTP', 1); |
| 30 | define('SG_STORAGE_DROPBOX', 2); |
| 31 | define('SG_STORAGE_GOOGLE_DRIVE', 3); |
| 32 | define('SG_STORAGE_AMAZON', 4); |
| 33 | define('SG_STORAGE_ONE_DRIVE', 5); |
| 34 | |
| 35 | define('SG_STORAGE_GOOGLE_DRIVE_CLIENT_ID', '1030123017859-vfdlqkjhiuuu5n36pbov93v9ruo6jpj5.apps.googleusercontent.com'); |
| 36 | define('SG_STORAGE_GOOGLE_DRIVE_SECRET', 'oUcZwC17q5ZSbYahnQkGYpyH'); |
| 37 | define('SG_STORAGE_GOOGLE_DRIVE_REDIRECT_URI', 'https://backup-guard.com/gdrive/'); |
| 38 | define('SG_STORAGE_DROPBOX_KEY', 'n3yhajm64h88m9t'); |
| 39 | define('SG_STORAGE_DROPBOX_SECRET', 's8crjkls7f9wqtd'); |
| 40 | define('SG_STORAGE_DROPBOX_CLIENT_ID', 'backup-guard'); |
| 41 | define('SG_STORAGE_DROPBOX_REDIRECT_URI', 'https://backup-guard.com/dropbox/'); |
| 42 | |
| 43 | define('SG_STORAGE_ONE_DRIVE_SECRET', 'tdajnuNEibaaEdCB3OfaXQk'); |
| 44 | define('SG_STORAGE_ONE_DRIVE_REDIRECT_URI', "https://backup-guard.com/onedrive/"); |
| 45 | define('SG_STORAGE_ONE_DRIVE_CLIENT_ID', "48c83729-fb5b-43d5-a66d-9532f4dfefdb"); |
| 46 | |
| 47 | $SG_BACKUP_AMAZON_REGIONS = array( |
| 48 | array("name"=>"US East (N. Virginia)", "region"=>"us-east-1"), |
| 49 | array("name"=>"US East (Ohio)", "region"=>"us-east-2"), |
| 50 | array("name"=>"US West (Oregon)", "region"=>"us-west-2"), |
| 51 | array("name"=>"US West (N. California)", "region"=>"us-west-1"), |
| 52 | array("name"=>"EU (Ireland)", "region"=>"eu-west-1"), |
| 53 | array("name"=>"EU (London)", "region"=>"eu-west-2"), |
| 54 | array("name"=>"EU (Frankfurt)", "region"=>"eu-central-1"), |
| 55 | array("name"=>"Asia Pacific (Singapore)", "region"=>"ap-southeast-1"), |
| 56 | array("name"=>"Asia Pacific (Tokyo)", "region"=>"ap-northeast-1"), |
| 57 | array("name"=>"Asia Pacific (Sydney)", "region"=>"ap-southeast-2"), |
| 58 | array("name"=>"Asia Pacific (Seoul)", "region"=>"ap-northeast-2"), |
| 59 | array("name"=>"Asia Pacific (Mumbai)", "region"=>"ap-south-1"), |
| 60 | array("name"=>"South America (São Paulo)", "region"=>"sa-east-1"), |
| 61 | array("name"=>"Canada (Central)", "region"=>"ca-central-1") |
| 62 | ); |
| 63 | |
| 64 | $SG_BACKUP_GOOGLE_REGIONS = array( |
| 65 | array("name" => "Google Storage: EU", "region" => "google-storage"), |
| 66 | array("name" => "Google Storage: USA", "region" => "google-storage-us"), |
| 67 | array("name" => "Google Storage: Asia", "region" => "google-storage-asia") |
| 68 | ); |
| 69 | |
| 70 | define('SG_PRODUCT_IDENTIFIER', 'backup-guard-wp-platinum'); |
| 71 | |
| 72 | //BackupGuard Support URL |
| 73 | define('SG_BACKUP_SUPPORT_URL', 'https://help.backup-guard.com/en/'); |
| 74 | define('BG_UPGRADE_URL', 'https://backup-guard.com/products/security#pricing'); |
| 75 |