'browser error does not find the URL to ckfinder.html
I downloaded ckeditor with built-in ckfinder then put it in wwwroot . I configured Config.js of ckditor as follows
CKEDITOR.editorConfig = function (config) {
config.sytaxhighlight_lang = 'csharp';
config.sytaxhighlight_hideControls = true;
config.language = 'vi';
config.filebrowserBrowseUrl = '/ckeditor/ckfinder/ckfinder.html';
config.filebrowserImageBrowseUrl = '/ckeditor/ckfinder/ckfinder.html?type=Images';
config.filebrowserFlashBrowseUrl = '/ckeditor/ckfinder/ckfinder.html?type=Flash';
config.filebrowserUploadUrl = '/ckeditor/ckfinder/core/connecto/php/connector.php?command=QuickUpload&type=Files';
config.filebrowserImageUploadUrl = '/ckeditor/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images';
config.filebrowserFlashUploadUrl = '/ckeditor/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash';
CKFinder.setupCKEditor(null, '~/ckeditor/ckfinder/')
};
$config['backends'][] = array(
'name' => 'default',
'adapter' => 'local',
'baseUrl' => '/upload/post/', // file upload
// 'root' => '', // Can be used to explicitly set the CKFinder user files directory.
'chmodFiles' => 0777,
'chmodFolders' => 0755,
'filesystemEncoding' => 'UTF-8',
);
<div class="form-group">
<label asp-for="Content" class="control-label"></label>
<textarea id="editor" asp-for="Content" class="form-control"></textarea>
<span asp-validation-for="Content" class="text-danger"></span>
</div>
<script>
var editor = CKEDITOR.replace('editor' , {
customConfig: '/ckeditor/config.js',
})
</script>
Please tell me what might be the cause.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|