I am trying to integrate CKFinder into CKEditor by doing the following:
CKEDITOR.replace( 'TabNotes',
{
filebrowserBrowseUrl : 'editor/ckfinder/ckfinder.html?type=Files',
.
.
.
}
My problem is that I want to pass multiple types to type in the above line. How do I do this? I have tried
filebrowserBrowseUrl : 'editor/ckfinder/ckfinder.html?type=Files,AllUsers',
and
filebrowserBrowseUrl : 'editor/ckfinder/ckfinder.html?type=Files&type=AllUsers',
and neither work.
Any help would be appreciated.
CKEDITOR.replace( 'TabNotes',
{
filebrowserBrowseUrl : 'editor/ckfinder/ckfinder.html?type=Files',
.
.
.
}
My problem is that I want to pass multiple types to type in the above line. How do I do this? I have tried
filebrowserBrowseUrl : 'editor/ckfinder/ckfinder.html?type=Files,AllUsers',
and
filebrowserBrowseUrl : 'editor/ckfinder/ckfinder.html?type=Files&type=AllUsers',
and neither work.
Any help would be appreciated.
Re: Integrate CKEditor and CKFinder multiple resource type
If you really need it now, let me know and I'll show you a workaround, which requires changes in CKFinder server side scripts, unfortunately.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Integrate CKEditor and CKFinder multiple resource type
I really need it now so if you can show me a workaround that would be great.
Thanks for your help
Re: Integrate CKEditor and CKFinder multiple resource type
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Integrate CKEditor and CKFinder multiple resource type
Coldfusion
Re: Integrate CKEditor and CKFinder multiple resource type
1) In config.cfm replace:
with:
2) Open core\connector\cfm\CommandHandler\Init.cfc
Around line 80 replace:
with:
3) Point CKFinder to "'Clipart,Images" by setting among other configuration options:
/ckfinder/ckfinder.html?type=Clipart,Images
or by calling e.g. CKFinder.setupCKEditor( editor, '/ckfinder/', 'Clipart,Images' ) ;
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Integrate CKEditor and CKFinder multiple resource type
Context validation error for the cfscript tag.
Have I missed something?
Re: Integrate CKEditor and CKFinder multiple resource type
My apologizes, I had a typo in one of the edits that I made. It is working now. Thank you very much for your help!