Hello,
I am trying to use the Image Dialog in the Editor, but have a problem: The ImageManager seems to require absolute paths, while I need to use a relative path. This is the code I have now:
I am trying to use the Image Dialog in the Editor, but have a problem: The ImageManager seems to require absolute paths, while I need to use a relative path. This is the code I have now:
<ImageManager ViewPaths="../Images" UploadPaths="../Images" DeletePaths="../Images" />
I would like to avoid the following:
<ImageManager ViewPaths="~/Directory/Images" UploadPaths="~/Directory/Images" DeletePaths="~/Directory/Images" />
Is there a way to get this to work?