HEEN
HEEN

Reputation: 4721

No option for Image upload from the computer in CKEditor

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

Answers (2)

Hendra Setiawan
Hendra Setiawan

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

Related Questions