Plugin Directory

Changeset 3444571


Ignore:
Timestamp:
01/22/2026 06:33:04 AM (6 weeks ago)
Author:
databasebackup
Message:

7.9

  • 22-01-2025
  • Fix: Conflict issue with PHP 5.6 version. #129
  • Fix: 0 bytes showing in the website list #122
  • Test: Proper Testing of cloud backup #119
Location:
wp-database-backup/trunk
Files:
1 deleted
5 edited

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
    17= 7.8 =
    28* 15-12-2025
  • wp-database-backup/trunk/includes/admin/Destination/CloudDrive/class-wpdatabasebackupcd.php

    r3420248 r3444571  
    3131    WP_Filesystem();
    3232
    33     $api_url ="https://app.backupforwp.com/public";
     33    $api_url ="https://app.backupforwp.com";
    3434
    3535    $token = get_option('wpdb_clouddrive_token') ? get_option('wpdb_clouddrive_token') : '';
     
    7070    $headers = array(
    7171        'Authorization' => $upload_auth_token,
     72        'X-Backup-Token' => $upload_auth_token,
    7273        'domain'=> parse_url(get_site_url(), PHP_URL_HOST),
    7374        'Content-Type' => 'multipart/form-data; boundary=' . $boundary,
  • wp-database-backup/trunk/includes/admin/class-wpdb-admin.php

    r3420248 r3444571  
    809809                                }
    810810
    811                                 if (!empty($option['destination'])) {
    812                                     if (strpos($option['destination'], 'CloudDrive') !== false) {
    813                                         continue;
    814                                     }
    815                                 }
    816811                                $size = isset( $option['size'])? $option['size'] : 0;
    817812                                $str_class = ( 0 === (int) $size  ) ? 'text-danger' : 'wpdb_download';
  • wp-database-backup/trunk/readme.txt

    r3420248 r3444571  
    77Tested up to: 6.9
    88Requires PHP: 5.6.20
    9 Stable tag: 7.8
     9Stable tag: 7.9
    1010
    1111Create & Restore Database Backup easily on single click. Manual or automated backups (backup to Dropbox, Google drive, Amazon s3,FTP,Email).
     
    7878
    7979== 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
    8086= 7.8 =
    8187* 15-12-2025
  • wp-database-backup/trunk/wp-database-backup.php

    r3420248 r3444571  
    44 * Plugin URI: https://wordpress.org/plugins/wp-database-backup
    55 * Description: This plugin helps you to create/restore Unlimited  WordPress Database & Files backup.
    6  * Version: 7.8
     6 * Version: 7.9
    77 * Author: Backup for WP
    88 * Author URI: https://backupforwp.com/
     
    3939     * @class WPDatabaseBackup
    4040     *
    41      * @version 7.3
     41     * @version 7.9
    4242     */
    4343    final class WPDatabaseBackup {
     
    4848         * @var string
    4949         */
    50         public $version = '7.8';
     50        public $version = '7.9';
    5151
    5252        /**
Note: See TracChangeset for help on using the changeset viewer.