views:

25

answers:

2

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.

+1  A: 

Write your own plugin. This tutorial should help.

Anpher
Thanks, that's a nice article.
Francisc
A: 

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']='';
Francisc