Question

I am using CKFinder integrated in CKEditor. I want to keep the Upload feature active, but scrap the Browse Server option as I don't want users doing this.

How can I do this?

Thank you.

Was it helpful?

Solution

The shorthand is after you setup the CKFinder integration with CKEditor, override the URLs to the FileBrowser:

//Prevent the fileBrowser button and option
$CKEditor->config['filebrowserBrowseUrl']='';
$CKEditor->config['filebrowserImageBrowseUrl']='';
$CKEditor->config['filebrowserFlashBrowseUrl']='';
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top