Hi Guys,
Ok I was finally able to reproduce this error under medium trust. I will fix this for the next release, but I do have a workaround for you to get past the error. The workaround will mean that you cannot use FCKeditor, but you will be able to use TinyMCE or CKEditor without errors.
What you need to do is edit the mojoEditor.config file and change this:
<add name="FCKeditorProvider"
type="mojoPortal.Web.Editor.FCKeditorProvider, mojoPortal.Web"
description="Allows using the FCKeditor" />
to this:
<add name="FCKeditorProvider"
type="mojoPortal.Web.Editor.CKEditorProvider, mojoPortal.Web"
description="Allows using the FCKeditor" />
basically we are just tricking it to use CKeditor instead of FCKeditor provider even when the default provider is configured as FCKeditor. In code FCKeditor is configured as the default only because it was the first editor we ever implemented and it never caused any problem till now.
I will try to get a new release out with a fix for this pretty soon, but that should get you back in business.
Best,
Joe