Hi to all,
I just downloaded the CKEditor 3.x. Now when i click on image or flash button inside the editor, then it opens a window. But i can't select image or flash file from my computer. I want that when window open then there should be Browse button alongh with the URL and when user click on the button, then you can select images from your computer not from your server. And when you select image, then this image should be shown in the CKEditor. How can i do it? Do i need to make my own file browser mechanism or i can use free file managers.
Thanks
I just downloaded the CKEditor 3.x. Now when i click on image or flash button inside the editor, then it opens a window. But i can't select image or flash file from my computer. I want that when window open then there should be Browse button alongh with the URL and when user click on the button, then you can select images from your computer not from your server. And when you select image, then this image should be shown in the CKEditor. How can i do it? Do i need to make my own file browser mechanism or i can use free file managers.
Thanks

Re: How to add file browser to CKEditor
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: How to add file browser to CKEditor
CKEDITOR.replace( 'editor1', { filebrowserBrowseUrl : '/browser/browse.php', filebrowserUploadUrl : '/uploader/upload.php' });filebrowserBrowseUrlfilebrowserUploadUrl'/uploader/upload.php'http://blueimp.github.com/jQuery-File-Upload/
Re: How to add file browser to CKEditor
http://docs.cksource.com/ckeditor_api/s ... rBrowseUrl
http://docs.cksource.com/ckeditor_api/s ... rUploadUrl
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: How to add file browser to CKEditor
Do you have a sample script for upload.php?
It is a $_GET or $_POST?
What is the file field name? $_POST[image]?
Can't find any document talk about this. Can you help?
Re: How to add file browser to CKEditor