Maximum files upload in a record
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2016 02:28 PM
Hi,
What is the max file size limit and how many files we can attach in a single record?
Is count of files attaching is not limited, can we attach any number of files each file having max file size limit.
Can you please suggest
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2016 02:40 PM
I do not believe the number of attachment on a record is limited.
See these properties for setting attachment size limits:
Name | Type | Description |
com.glide.attachment.max_get_size | integer | Maximum file attachment size in bytes: |
com.glide.attachment.max_size | integer | Maximum file attachment size in megabytes: |
glide.email.inbound.max_attachment_count | integer | The maximum number attachments allowed on an inbound email. Attachments beyond this limit are ignored. |
glide.email.inbound.max_total_attachment_size_bytes | integer | The maximum combined size (in bytes) for all attachments on an inbound email. Attachments beyond this limit are ignored. |
glide.email.outbound.max_attachment_count | integer | The maximum number attachments allowed on an outbound email. Attachments beyond this limit are ignored. |
glide.email.outbound.max_total_attachment_size_bytes | integer | The maximum combined size (in bytes) for all attachments on an outbound email. Attachments beyond this limit are ignored. |

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-17-2017 10:59 PM
Hi,
You could also use a before insert business rule: check the attachment table for the number of existing attachments, if it exceeds your limit, abort the insert and display an info to the user.
Best,