We have faced one issue while uploading the images into the Media library where all the image items were getting created in Unversion template by default even if we select the “Make Uploaded Media Items Versionable” checkbox. Here the Make Uploaded Media Items Versionable checkbox functionality was not working. We checked the sitecore.config file to see the media setting but could not get any idea that why this issue is happening.
After few analysis we found that it is a Bug with Sitecore 8.1 and sitecore support team has provided the fix for this bug as Sitecore.Support.439231.
Problem was with MediaFolder.js file in line 320.
Below are the steps to Fix this bug:
- Open MediaFolder.js from -\Website\sitecore\shell\Applications\Media\MediaFolder
- Go to line 320
- replace
this.yUploader.upload(file, this.destination, “POST“, params);
with:
this.yUploader.upload(file, this.destination, params);
- Save the file and clear browser cache
