I have the following CKEditor and CKFinder 3 set up in my cshtml:
<script>
var editor = CKEDITOR.replace('editor11', {
htmlEncodeOutput: true,
wordcount: {
showWordCount: false,
showCharCount: false,
countSpacesAsChars: true,
countHTML: false
},
});
CKFinder.setupCKEditor(editor, null, { type: 'Images' });
</script>
with the following to specify the connector:
<add key="ckfinderRoute" value="/ckfinder/connector"/>
which is used in the ConnectorConfig class, method Configuration thusly:
var route = ConfigurationManager.AppSettings["ckFinderRoute"];
app.Map(route, SetupConnector);
When running my app on my local machine, this works as expected. However, after doing a straight publish to our DEV server,without changing any configuration, I get the following error when either Browser Server or Send it to the Server is attempted:
When I view source after dismissing the error message, I see that ckfinder.html is loaded as expected.
Can anyone help?