Try our conversational search powered by Generative AI!

VPP upload size

Vote:
 

Hello,

Short question: What is the default maximum upload size of a file in the VPP/File manager? How do you change it?

 

Regards
Anders

#76640
Oct 30, 2013 12:43
Vote:
 

It should be controlled by application server - in this case IIS. Files are uploaded to "/{secureUI}/cms/admin/" location in CMS.

So to change allowed upload file sizes you would need to change web.config section for that location - either "/{secureUI}/cms/admin" or just a "admin".

 

<location path="Admin">
    <system.web>
      <httpRuntime maxRequestLength="...." />
    </system.web>
    <system.webServer>
      <security>
        <requestFiltering>
          <requestLimits maxAllowedContentLength="..." />
        </requestFiltering>
      </security>
    </system.webServer>
  </location>

    

By default it should be around 28MB.

http://www.iis.net/configreference/system.webserver/security/requestfiltering/requestlimits

#76671
Oct 31, 2013 8:42
Vote:
 

Tried adding these values in web.config to both the admin path and global files path without any luck....

#76884
Nov 05, 2013 15:00
Vote:
 

With these settings I could managed to upload 600 MB file to Global files folder running under IIS 7.

<location path="cms/CMS/admin">
  <system.web>
    <httpRuntime maxRequestLength="2147483647" executionTimeout="3600" requestValidationMode="2.0" />
    <authorization>
      <allow roles="WebAdmins, Administrators" />
      <deny users="*" />
    </authorization>
  </system.web>
  <system.webServer>
    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="1073741824" />
      </requestFiltering>
    </security>
  </system.webServer>
</location>

    

What is the error you see?

#76890
Nov 05, 2013 16:00
Vote:
 

Just tried these above settings and uploading a 300mb file - getting "timed out, or max file size exceeded". Nothing recorded in the error logs. Had a Google around and tried a few different solutions..

#180545
Jul 13, 2017 18:57
This thread is locked and should be used for reference only. Please use the Episerver CMS 7 and earlier versions forum to open new discussions.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.