I have 101,000 kb data file that I uploaded to shinyapp and my app disconnect from server. what is the size limit
By default, the user can only upload files up to 5 MB. You can increase this limit by setting the shiny.maxRequestSize option prior to starting Shiny. For example, to allow up to 10 MB run options(shiny.maxRequestSize = 10 * 1024^2). Try it as the firstline of your app.R
2 Likes
Thanks, I will try it.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.