Plugin Directory

Changeset 3147755


Ignore:
Timestamp:
09/06/2024 06:50:19 PM (6 months ago)
Author:
uglyrobot
Message:

Update to version 2.1.3 from GitHub

Location:
tuxedo-big-file-uploads
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • tuxedo-big-file-uploads/tags/2.1.3/readme.txt

    r2984081 r3147755  
    33Tags: increase file size limit, increase upload limit, max upload file size, post max size, upload limit, file upload, files uploader, ftp, video uploader, AJAX
    44Requires at least: 5.3
    5 Tested up to: 6.4
    6 Stable tag: 2.1.2
     5Tested up to: 6.6.1
     6Stable tag: 2.1.3
    77Requires PHP: 5.6
    88License: GPLv2
     
    107107== Changelog ==
    108108
     1092.1.3 - 2024-9-6
     110----------------------------------------------------------------------
     111- Fix for Authenticated (Author+) Full Path Disclosure vulnerability in error messages. Props @netc4t
     112
    1091132.1.2 - 2023-10-25
    110114----------------------------------------------------------------------
  • tuxedo-big-file-uploads/tags/2.1.3/tuxedo_big_file_uploads.php

    r2984081 r3147755  
    33 * Plugin Name: Big File Uploads
    44 * Description: Enable large file uploads in the built-in WordPress media uploader via multipart uploads, and set maximum upload file size to any value based on user role. Uploads can be as large as available disk space allows.
    5  * Version:     2.1.2
     5 * Version:     2.1.3
    66 * Author:      Infinite Uploads
    77 * Author URI:  https://infiniteuploads.com/?utm_source=bfu_plugin&utm_medium=plugin&utm_campaign=bfu_plugin&utm_content=meta
     
    2525 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    2626 *
    27  * Copyright 2021 UglyRobot, LLC
     27 * Copyright 2021-2024 UglyRobot, LLC
    2828 *
    2929 * @package BigFileUploads
     
    3535}
    3636
    37 define( 'BIG_FILE_UPLOADS_VERSION', '2.1.2' );
     37define( 'BIG_FILE_UPLOADS_VERSION', '2.1.3' );
    3838
    3939/**
     
    176176            $default_chunk = $max_chunk / KB_IN_BYTES;
    177177        }
    178         //define( 'BIG_FILE_UPLOADS_CHUNK_SIZE_KB', 512 );//TODO remove
     178
    179179        if ( ! defined( 'BIG_FILE_UPLOADS_CHUNK_SIZE_KB' ) ) {
    180180            define( 'BIG_FILE_UPLOADS_CHUNK_SIZE_KB', $default_chunk );
     
    599599                        'success' => false,
    600600                        'data'    => array(
    601                             'message'  => sprintf( __( 'There was an error opening the temp file %s for writing. Available temp directory space may be exceeded or the temp file was cleaned up before the upload completed.', 'tuxedo-big-file-uploads' ), esc_html( $filePath ) ),
     601                            'message'  => __( 'There was an error opening the temp file for writing. Available temp directory space may be exceeded or the temp file was cleaned up before the upload completed.', 'tuxedo-big-file-uploads' ),
    602602                            'filename' => esc_html( $fileName ),
    603603                        ),
     
    618618                        esc_html( $fileName )
    619619                    ),
    620                     sprintf( __( 'There was an error opening the temp file %s for writing. Available temp directory space may be exceeded or the temp file was cleaned up before the upload completed.', 'tuxedo-big-file-uploads' ), esc_html( $filePath ) )
     620                    __( 'There was an error opening the temp file for writing. Available temp directory space may be exceeded or the temp file was cleaned up before the upload completed.', 'tuxedo-big-file-uploads' )
    621621                );
    622622                exit;
  • tuxedo-big-file-uploads/trunk/readme.txt

    r2984081 r3147755  
    33Tags: increase file size limit, increase upload limit, max upload file size, post max size, upload limit, file upload, files uploader, ftp, video uploader, AJAX
    44Requires at least: 5.3
    5 Tested up to: 6.4
    6 Stable tag: 2.1.2
     5Tested up to: 6.6.1
     6Stable tag: 2.1.3
    77Requires PHP: 5.6
    88License: GPLv2
     
    107107== Changelog ==
    108108
     1092.1.3 - 2024-9-6
     110----------------------------------------------------------------------
     111- Fix for Authenticated (Author+) Full Path Disclosure vulnerability in error messages. Props @netc4t
     112
    1091132.1.2 - 2023-10-25
    110114----------------------------------------------------------------------
  • tuxedo-big-file-uploads/trunk/tuxedo_big_file_uploads.php

    r2984081 r3147755  
    33 * Plugin Name: Big File Uploads
    44 * Description: Enable large file uploads in the built-in WordPress media uploader via multipart uploads, and set maximum upload file size to any value based on user role. Uploads can be as large as available disk space allows.
    5  * Version:     2.1.2
     5 * Version:     2.1.3
    66 * Author:      Infinite Uploads
    77 * Author URI:  https://infiniteuploads.com/?utm_source=bfu_plugin&utm_medium=plugin&utm_campaign=bfu_plugin&utm_content=meta
     
    2525 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    2626 *
    27  * Copyright 2021 UglyRobot, LLC
     27 * Copyright 2021-2024 UglyRobot, LLC
    2828 *
    2929 * @package BigFileUploads
     
    3535}
    3636
    37 define( 'BIG_FILE_UPLOADS_VERSION', '2.1.2' );
     37define( 'BIG_FILE_UPLOADS_VERSION', '2.1.3' );
    3838
    3939/**
     
    176176            $default_chunk = $max_chunk / KB_IN_BYTES;
    177177        }
    178         //define( 'BIG_FILE_UPLOADS_CHUNK_SIZE_KB', 512 );//TODO remove
     178
    179179        if ( ! defined( 'BIG_FILE_UPLOADS_CHUNK_SIZE_KB' ) ) {
    180180            define( 'BIG_FILE_UPLOADS_CHUNK_SIZE_KB', $default_chunk );
     
    599599                        'success' => false,
    600600                        'data'    => array(
    601                             'message'  => sprintf( __( 'There was an error opening the temp file %s for writing. Available temp directory space may be exceeded or the temp file was cleaned up before the upload completed.', 'tuxedo-big-file-uploads' ), esc_html( $filePath ) ),
     601                            'message'  => __( 'There was an error opening the temp file for writing. Available temp directory space may be exceeded or the temp file was cleaned up before the upload completed.', 'tuxedo-big-file-uploads' ),
    602602                            'filename' => esc_html( $fileName ),
    603603                        ),
     
    618618                        esc_html( $fileName )
    619619                    ),
    620                     sprintf( __( 'There was an error opening the temp file %s for writing. Available temp directory space may be exceeded or the temp file was cleaned up before the upload completed.', 'tuxedo-big-file-uploads' ), esc_html( $filePath ) )
     620                    __( 'There was an error opening the temp file for writing. Available temp directory space may be exceeded or the temp file was cleaned up before the upload completed.', 'tuxedo-big-file-uploads' )
    621621                );
    622622                exit;
Note: See TracChangeset for help on using the changeset viewer.