I also failed to upload images. Firstly, I thought it was a setting or a resolution problem. But it turned out that I needed a "media descriptor."
You can read about it here . This applies to EPiServer CMS 7.x
C # example:
[ContentType]
[MediaDescriptor(ExtensionString = "jpg,jpeg,jpe,gif,bmp,png")]
public class ImageFile : ImageData
{
public virtual string AlternativeText { get; set; }
}
source
share