Hello!
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.
Hello!
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.
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']='';