Zakayen
Zakayen

Reputation: 9

Is there a way to force sitecore users to upload media as file?

Just as the title says, I need a way to force users to only upload media as file. From what I've seen the only way to upload as file is to upload using the advanced upload options.

Upvotes: 0

Views: 220

Answers (1)

Marek Musielak
Marek Musielak

Reputation: 27142

You can use Media.UploadAsFiles setting to force Sitecore to store all media items as files:

<!--
  UPLOAD AS FILES
    Controls whether Sitecore stores media as files or as database records by default.
    This setting is ignored if the Media.DisableFileMedia setting is true.
    Default: false

-->
<setting name="Media.UploadAsFiles" value="false"/>

Upvotes: 0

Related Questions