Menu
  • HOME
  • TAGS

CK Finder - Browse server button gives “Folder not found. Please refresh and try again.” error

ckfinder

Please check you have provided proper path. Also permissions on the folder you specified,sometimes it happens just because of permissions not given to folder.

CKFinder Authentication issue with laravel 5

php,laravel-5,ckfinder

I had the same issue too. Your code is useful for laravel 4.2 but for laravel 5 you need to do this in ckfinder folder's config.php: require _DIR_.'/../../../bootstrap/autoload.php'; $app = require_once _DIR_.'/../../../bootstrap/app.php'; $app->make('Illuminate\Contracts\Http\Kernel') ->handle(Illuminate\Http\Request::capture()); Then you are ready to go with this code: function CheckAuthentication(){ return Auth::check(); } This should...

CKFinder yields: “TypeError: f.config is undefined”

javascript,ckeditor,ckfinder,ckeditor4.x

CKFinder.setupCKEditor expects an instance, not the id of the editor. Use: CKFinder.setupCKEditor( CKEDITOR.instances['citation'], '/includes/static/js/ckfinder/' ); or simply pass null as the first argument. For more info check http://docs.cksource.com/CKFinder_2.x/Developers_Guide/PHP/CKEditor_Integration...

Customize CKFinder paths dynamically with JS, can it be done?

javascript,php,ckeditor,ckfinder

With help from the discussion Customize baseUrl and baseDir in CKFinder I got close to the answer with Travis comment. There is a way to call different server side settings for each instance of CKFinder by just using a GET parameter in the path to CKFinder. I set the id...

ckfinder's browse for images not working properly on ckeditor php

php,html,ckeditor,image-upload,ckfinder

Check the config.php file in CKFinder root. By default, CKFinder will not work due to authentication restrictions. You must first make sure that you have configured it correctly, and then enable it. This is to make sure that no unauthorized user can upload and access files on your server. Once...

CKFinder 3 upgrade difficulty

php,ckfinder

Indeed the CKFinder 3 documentation was lacking some important information. We're gradually adding new articles there. Based on topics you mentioned I just added: Explanation how PHP code that worked for CKFinder 2 can be refactored to plain JavaScript in CKFinder 3. Should look familiar ;) A table with Configuration...