I have 101,000 kb data file that I uploaded to shinyapp and my app disconnect from server. what is the size limit

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

1 Like

Thanks, I will try it.