Reputation: 4721
I have downloaded the CK Editor
from CKEditor site. There are many features available on their site which works properly when I integrated into my site.
But,
there is no feature available to upload image from the local computer.
Is there any easiest way to integrate this. The below is the way, I implemented the code.
<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>
AND
<CKEditor:CKEditorControl ID="txtPagedesc" BasePath="/ckeditor/" runat="server">
</CKEditor:CKEditorControl>
Please help
Upvotes: 1
Views: 3007
Reputation: 42
Yes. CKEditor doesn't have feature to upload image directly from local computer. But I think this should be help you :
https://github.com/hendcorp/ckeditor-img-upload
It uses Bootstrap, jQuery and PHP to create simple pop up (modals) to upload images directly from local computer and we just need to click uploaded image to insert into CKEditor. I hope it can help.
Upvotes: 0
Reputation: 120
These documents might help you.
http://docs.ckeditor.com/#!/guide/dev_file_browse_upload http://docs.ckeditor.com/#!/guide/dev_howtos_file_upload
Upvotes: 1