Welcome!
This community is for professionals and enthusiasts of the Genio platform.
Share your questions and challenges, and help your partners!
Documents in folder size
We're having problems with the storage of documents. We want to store files up tom some GB in size and we're having size errors. This documents are stored in folders, not inside the database or in a FileStream folder.
Some configurations on the "Web.Config" were already changed, but this doesn't solve the problem.
How can we do to surpass the limits? TIA
Hello,
Thanks for your message.
Yes I changed the size in this section:
<httpRuntime maxRequestLength="31457280" /> for files up to 30GB
Still the error message is:
This message takes me to the jquery.fileupload-validate.js
...
messages: {
maxNumberOfFiles: 'Maximum number of files exceeded',
acceptFileTypes: 'File type not allowed',
maxFileSize: 'File is too large',
minFileSize: 'File is too small'
}
...
So I assume there must be a place where to change the "maxFileSize", but there are too many places where this can be changed.
Is it somewhere in here, or just the web.config should do the job?
Hi,
This setting goes in your web.config file. It affects the entire application, though...
<configuration>
<system.web>
<httpRuntime maxRequestLength="xxx" />
</system.web>
</configuration>
"xxx" is in KB. The default is 4096 (= 4 MB).Was this the property you had changed? What is the error you are getting?
Keep Informed
About the Community
Question tools
Stats
Asked: 4/12/2020 上午3:02 |
Seen: 1769 times |
Last updated: 28/4/2021 下午1:26 |
Hi Alvaro,
I've tried all of this with the latest version of Genio available for us (299.23) , including the changes in the web.config files, and yet I'm not even able to upload a 900Mb++ file. It goes through all the uploading process until 100% and then the error message is "Ocorreu um erro ao processar o pedido."
When using a routine written by us that imports files from a folder, we're able to upload files up to 2Gb, but not larger than that.
We really need to solve this problem....