I purchased CKfinder but I am unable to integrate to CKEditor. Here is the structure of my application
----application folder
---------ckeditor
---------ckfinder
---------editor.php
I am using jQuery and according to the documentation that I saw online, this what I did :
The editor is appearing very well but when I click on the Image icon, the window does not still appear with Upload icon
Thanks
----application folder
---------ckeditor
---------ckfinder
---------editor.php
I am using jQuery and according to the documentation that I saw online, this what I did :
<script type="text/javascript" src="Js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="ckeditor/adapters/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#editor1').ckeditor();
var editor = CKEDITOR.replace( 'editor1' );
CKFinder.setupCKEditor(editor, '/ckfinder/' );
});
</script>The editor is appearing very well but when I click on the Image icon, the window does not still appear with Upload icon
Thanks

Re: Integrating CKfinder with CKeditor
since you have a valid CKFinder license, the quickest way to get help with configuration issues is to contact the e-mail support channel as described in your purchase e-mail. Use your support token that you received and a customer support person will get back to you.
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: Integrating CKfinder with CKeditor
I am really surprised as I don't know what is happening.I sent a mail to the email address that was given to me in my license detail. On the message subject, I copied my Support Token. I have not had an answer for two days now, I am really surprised. Is there something I didn't do right ? How to use the support token ?
Re: Integrating CKfinder with CKeditor
Re: Integrating CKfinder with CKeditor
Stop buying licenses - and post your hard earned experience online for all others to view, so they'll stop this Steve Jobs business approach: Create a product everyone want's, and then give them hell trying to use the product!
How to Correct the Issue
$('#editor1').ckeditor(function(){ CKFinder.setupCKEditor( this, '/ckfinder/' ); });Hopefully this will save someone time. This is how to fix this issue.