Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
We are currently running EpiServer 8.8.0.0. I have copied a png file to the Media folder in the EpiServer backoffice. Then I have edited the xhtml string using the TinyMCE editor's Insert/Edit Image toolbar button. While editing I see a broken link icon. But when I click insert the image appears. When I publish the content the image is broken with the relative path of /globalassets/imagename.png. How do I resolve this to allow our marketing department to upload images through the TinyMCE Editor?
URL of broken link
http://esrdncc.org/en/image-test/
IMAGE MARKUP
Web.config
Extension Strings
[MediaDescriptor(ExtensionString = "jpg,jpeg,jpe,ico,gif,bmp,png,tiff,tif")]
publicclassImageFile : ImageData
{
[Display(Name = "Alternate Text")]
[Required]
publicvirtualstring AltText { get; set; }
[ImageDescriptor(Width = 80, Height = 80)]
publicoverrideBlob Thumbnail
{
get { returnbase.Thumbnail; }
set { base.Thumbnail = value; }
}
}