function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jessie ChaiJessie Chai 

Upload large size to DMS via salesforce

Lightning:fileUpload is to upload files into Salesforce platform and I would like to upload files to non-salesforce platform such as Alfresco via salesforce, but the lightning:iput are subject to a 1 MB size limit. how can I do?
Best Answer chosen by Jessie Chai
VinayVinay (Salesforce Developers) 
Hi Jessie,

You can increase size attachment file size up to 65MB.

https://help.salesforce.com/articleView?type=1&mode=1&id=000331184

Also, try to use  3rd party storage server middleware tool to store large files and check below link that has information to send files to external system

https://salesforce.stackexchange.com/questions/318960/sending-large-files-to-external-system

Thanks,

All Answers

RituSharmaRituSharma
You can use HTML input tag in this case.

<input type="file" id="myFile" name="filename">
VinayVinay (Salesforce Developers) 
Hi Jessie,

You can increase size attachment file size up to 65MB.

https://help.salesforce.com/articleView?type=1&mode=1&id=000331184

Also, try to use  3rd party storage server middleware tool to store large files and check below link that has information to send files to external system

https://salesforce.stackexchange.com/questions/318960/sending-large-files-to-external-system

Thanks,
This was selected as the best answer
Jessie ChaiJessie Chai
@RituSharma , HTML input tag in this case is not usable ,it also not to support the large size file upload(down),,,I got this error message  "Exceeded max size limit of 6000000"
User-added image