my ckeditor works great except the browse server and other functionalities.
In config file of ckeditor
CKEDITOR.editorConfig = function (config) {
config.htmlEncodeOutput = true,
config.filebrowserBrowseUrl = true,
config.filebrowserImageBrowseUrl=true
};
var editor = CKEDITOR.replace("profiel_lange_beschrijving", { toolbar: 'Full' });
CKFinder.setupCKEditor(editor, '~/Scripts/ckfinder');
CKEDITOR.replace('editor',
{
filebrowserBrowseUrl: '~/Scripts/ckfinder/ckfinder.html',
filebrowserImageBrowseUrl: '~/Scripts/ckfinder/ckfinder.html?type=Images',
filebrowserUploadUrl: '~/Scripts/ckfinder/core/connector/aspx/connector.aspx? command=QuickUpload&type=Files',
filebrowserImageUploadUrl: '~/Scripts/ckfinder/core/connector/aspx/connector.aspx? command=QuickUpload&type=Images'
command=QuickUpload&type=Flash'
});
How can i successfully integrate ckfinder in ckeditor? please help friends
Integrate Ckfinder in ckeditor .then add this in your Razor view
where ‘editor’ is the textbox id .
then create an UploadImage controller
Try this it works great