How to increase File Upload Size limits for CMS 12

  • Page Owner: Not Set
  • Last Reviewed: 2023-02-28

How do I increase the file upload limits for Optimizely CMS 12?


Answer

This is a two-fold fix. You need to allow the CMS to accept large files

In appsettings.json:

{
  "EPiServer": {
    "CmsUI": {
      "Upload": {
        "FileSizeLimit": 104857600
      }
    }
  }
}

Prevent IIS from filtering the request in web.config

<configuration>
  <system.webServer>
    <security>
      <requestFiltering removeServerHeader="true" >
      </requestFiltering>
    </security>
  </system.webServer>
</configuration>