Hi all, I have just installed CKEditor + CKFinder (PHP), all seems working, except I don't see images in the folder
That's what I have done so far :
1) uploaded CKEditor to /ckeditor/ and CKFinder to /ckfinder/ , so both in the root
2) I am using the CKEditor in my own script (myscript.php), which is in the folder /myscripts/
In the head tag of myscript.php i put this:
<script type="text/javascript" src="../ckeditor/ckeditor.js"></script>
In the script in body tag I also put this
<textarea name="description" id="editor1" cols="45" rows="5"><?= $place->getDescription() ?></textarea>
<script type="text/javascript">
var editor = CKEDITOR.replace( 'editor1');
</script>
3) I added below line to /ckeditor/config.js
config.filebrowserImageBrowseUrl = '/ckfinder/ckfinder.html?type=Images';
4) I edited /ckfinder/config.php
Updated function CheckAuthentication() to returen true (with authorization)
And left the baseUrl as is - $baseUrl = '/userfiles/';
Problem. When I Select Browse I see 4 folders on the left: Files, Images, Flash and Bin.. but I don't see inside anything, though I put some image files in /userfiles/
Can someone help me? :)
case
Is my case too complicated? )