Changeset 3444571
- Timestamp:
- 01/22/2026 06:33:04 AM (6 weeks ago)
- Location:
- wp-database-backup/trunk
- Files:
-
- 1 deleted
- 5 edited
-
LICENSE.TXT (deleted)
-
changelog.txt (modified) (1 diff)
-
includes/admin/Destination/CloudDrive/class-wpdatabasebackupcd.php (modified) (2 diffs)
-
includes/admin/class-wpdb-admin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-database-backup.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-database-backup/trunk/changelog.txt
r3420248 r3444571 1 = 7.9 = 2 * 22-01-2025 3 * Fix: Conflict issue with PHP 5.6 version. #129 4 * Fix: 0 bytes showing in the website list #122 5 * Test: Proper Testing of cloud backup #119 6 1 7 = 7.8 = 2 8 * 15-12-2025 -
wp-database-backup/trunk/includes/admin/Destination/CloudDrive/class-wpdatabasebackupcd.php
r3420248 r3444571 31 31 WP_Filesystem(); 32 32 33 $api_url ="https://app.backupforwp.com /public";33 $api_url ="https://app.backupforwp.com"; 34 34 35 35 $token = get_option('wpdb_clouddrive_token') ? get_option('wpdb_clouddrive_token') : ''; … … 70 70 $headers = array( 71 71 'Authorization' => $upload_auth_token, 72 'X-Backup-Token' => $upload_auth_token, 72 73 'domain'=> parse_url(get_site_url(), PHP_URL_HOST), 73 74 'Content-Type' => 'multipart/form-data; boundary=' . $boundary, -
wp-database-backup/trunk/includes/admin/class-wpdb-admin.php
r3420248 r3444571 809 809 } 810 810 811 if (!empty($option['destination'])) {812 if (strpos($option['destination'], 'CloudDrive') !== false) {813 continue;814 }815 }816 811 $size = isset( $option['size'])? $option['size'] : 0; 817 812 $str_class = ( 0 === (int) $size ) ? 'text-danger' : 'wpdb_download'; -
wp-database-backup/trunk/readme.txt
r3420248 r3444571 7 7 Tested up to: 6.9 8 8 Requires PHP: 5.6.20 9 Stable tag: 7. 89 Stable tag: 7.9 10 10 11 11 Create & Restore Database Backup easily on single click. Manual or automated backups (backup to Dropbox, Google drive, Amazon s3,FTP,Email). … … 78 78 79 79 == Changelog == 80 = 7.9 = 81 * 22-01-2025 82 * Fix: Conflict issue with PHP 5.6 version. #129 83 * Fix: 0 bytes showing in the website list #122 84 * Test: Proper Testing of cloud backup #119 85 80 86 = 7.8 = 81 87 * 15-12-2025 -
wp-database-backup/trunk/wp-database-backup.php
r3420248 r3444571 4 4 * Plugin URI: https://wordpress.org/plugins/wp-database-backup 5 5 * Description: This plugin helps you to create/restore Unlimited WordPress Database & Files backup. 6 * Version: 7. 86 * Version: 7.9 7 7 * Author: Backup for WP 8 8 * Author URI: https://backupforwp.com/ … … 39 39 * @class WPDatabaseBackup 40 40 * 41 * @version 7. 341 * @version 7.9 42 42 */ 43 43 final class WPDatabaseBackup { … … 48 48 * @var string 49 49 */ 50 public $version = '7. 8';50 public $version = '7.9'; 51 51 52 52 /**
Note: See TracChangeset
for help on using the changeset viewer.