Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
This document provides an introduction to asset management in EPiServer, and media type of content in particular. The EPiServer platform has an asset management system supporting used by EPiServer products such as CMS and Commerce. Assets are made available in the user interface in the assets pane, for instance blocks and media files in CMS, and the product catalog in Commerce. Media types can be for instance images, videos and documents. Media types, just as any other content type, have to be defined before it is possible to for example upload an image.
Refer to Media types and templates for defining types for media. Refer to BLOB storage and BLOB providers to change storage model for media, such as BLOB provider.
The assets system is based on a typed model with support for the following property types:
The following functionality is available for all content types:
In web.config, change the parameters maxAllowedContentLength and maxRequestLength:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1048576000" />
</requestFiltering>
</security>
</system.webServer>
Last updated: Mar 31, 2014