How to Use the Sitecore Media Upload Watcher on Azure
Because it's not enabled by default
Start typing to search...
Because it's not enabled by default
The Media Upload Watcher is functionality in which Sitecore automatically detects changes within the server file system and creates media library items with the files automatically attached and sorted into the corresponding directories within the upload folder.
This method of uploading is often faster than the other methods of uploading media; especially if you're uploading a large amount of files.
Verify in your Sitecore.config that the following exists:
<sc.variable name="mediaFolder" value="/upload">
Update the Web.config in the webroot directory by adding the following inside of the <system.webserver><modules> node. This enables the upload watcher.
<add type="Sitecore.Resources.Media.UploadWatcher, Sitecore.Kernel" name="SitecoreUploadWatcher"> <!-- NOTE: Added temporarily -->
More information can be found here
All the best,
Marcel</system.webserver></sc.variable>