Is there a definitive guide anywhere that shows how to implement CKFinder within the CKEditor in a ColdFusion environment?
I've gone through the configuration docs, but several items are still unclear.
Example - how do you get CKEditor to actually use CKFinder? The online docs only reference a JS file in FCKeditor. I tried finding something similiar in CKeditor, but it's not the same.
Also - are there any examples of session variable checking via the CheckAuthentication function in ColdFusion?
I'm a little confused about where we return a "true" value and how that gets fed back to CKFinder.
And finally - is there a ColdFusion version of CKEditor, or has it now gone 100% Javascript?
The samples contain a CFM folder, but they all point back to the JS folder.
Very confusing...so any help would be appreciated.
Thanks!
David
I've gone through the configuration docs, but several items are still unclear.
Example - how do you get CKEditor to actually use CKFinder? The online docs only reference a JS file in FCKeditor. I tried finding something similiar in CKeditor, but it's not the same.
Also - are there any examples of session variable checking via the CheckAuthentication function in ColdFusion?
I'm a little confused about where we return a "true" value and how that gets fed back to CKFinder.
And finally - is there a ColdFusion version of CKEditor, or has it now gone 100% Javascript?
The samples contain a CFM folder, but they all point back to the JS folder.
Very confusing...so any help would be appreciated.
Thanks!
David
Re: CKEditor/ CKFinder integration in ColdFusion
Hi David,
http://docs.cksource.com/CKFinder/Devel ... ColdFusion
http://docs.cksource.com/CKFinder/Devel ... ntegration
Maybe this recently added post will help you:
viewtopic.php?f=10&t=16515
You should return true only when you know, that the user that have opened CKFinder should have access to it. For example if you have an application, where you asks users to log in before they can do anything, then in the CheckAuthentication function you should return true at least only if they are really logged in.
Right now there is just a pure 100% javascript CKEditor. This shouldn't be a real problem at all, all you need to do is to follow the _samples provided with CKEditor and just add some extra code as described here:
http://docs.cksource.com/CKFinder/Devel ... ntegration
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: CKEditor/ CKFinder integration in ColdFusion
Just a quick thank you for the information above. We were able to get everything working correctly. This is the first time we've been able to get an editor to pull from the correct image directories (every user has a different directory), so I greatly appreciate your product and assistance.
David