Hide Forgot
Help Desk Ticket Reference: https://na7.salesforce.com/500A0000007B660 project_key: JBEPP Platform issue for EXOGTN-268: Currently it is possible to upload a file between 10 and 11 MB, although the limit is set to 10 MB. The following fix needs to be ported to the platform to address this: Index: component/web/server/src/main/java/org/exoplatform/upload/UploadService.java =================================================================== --- component/web/server/src/main/java/org/exoplatform/upload/UploadService.java (revision 5860) +++ component/web/server/src/main/java/org/exoplatform/upload/UploadService.java (working copy) @@ -256,7 +256,8 @@ limitMB = uploadLimitsMB_.get(upResource.getUploadId()).intValue(); } - int estimatedSizeMB = (int)((contentLength / 1024) / 1024); + double estimatedSizeMB = (contentLength / 1024) / 1024;
The above Release Notes text needs technical verification.
Release Notes Docs Status: Added: Documented as Known Issue Release Notes Text: Added: Proposed 'Known Issues' text: A bug in the Site Publisher code prevents the system from correctly calculating the size of an upload. This may allow files that do not adhere to the 10MB size limit to be uploaded. A fix is in development.
Release Notes Docs Status: Removed: Documented as Known Issue Added: Documented as Resolved Issue Release Notes Text: Removed: Proposed 'Known Issues' text: A bug in the Site Publisher code prevents the system from correctly calculating the size of an upload. This may allow files that do not adhere to the 10MB size limit to be uploaded. A fix is in development. Added: Proposed 'Known Issues' text: A bug in the Site Publisher code prevents the system from correctly calculating the size of an upload. This may allow files that do not adhere to the 10MB size limit to be uploaded.
Release Notes Text: Removed: Proposed 'Known Issues' text: A bug in the Site Publisher code prevents the system from correctly calculating the size of an upload. This may allow files that do not adhere to the 10MB size limit to be uploaded. Added: A bug in the Site Publisher code prevents the system from correctly calculating the size of an upload. This may allow files that do not adhere to the 10MB size limit to be uploaded.