Updating Attachment Size Limit


Follow

Overview

This article will demonstrate how to review the current attachment size limit, and how to update it to a new value.

Requirements

Server Admin credentials

Resolution

To review the current attachment size limit:

  • Run the following query on the trial1 database:
Select * From Setting WHERE sKey = 'cbUploadMax';

To update the attachment size limit to a new value:

  • Run the following update statement to update the cbUploadMax (Upload Limit) value in the Setting table:
Update Setting Set sValue = '52428800' Where sKey = 'cbUploadMax';
  • In this example, the cbUploadMax was set to '52428800' bytes which equals 50 MB. 

Validation

  • Run the initial query to confirm the updated limit:
Select * From Setting WHERE sKey = 'cbUploadMax';