It appears that even though I do not have the filebrowserUploadUrl set in my ckEditor config.js, the Upload tab would still be available and clicking on the "Send to Server" button on that tab would bring up a 404 File Not Found Error. This only started happening when I integrated ckFinder with ckEditor where before the introduction of ckFinder, the upload tab was missing as desired/expected.
To truly get the desired effect, I had to put 'filebrowserUploadUrl : null' in my settings when calling CKEDITOR.replace to create the editor instance.
I can only assume that ckFinder does some extra magic that ignores some of the ckEditor settings or lack there of.
Re: Removing Tabs From the Image Dialog
It appears that even though I do not have the filebrowserUploadUrl set in my ckEditor config.js, the Upload tab would still be available and clicking on the "Send to Server" button on that tab would bring up a 404 File Not Found Error. This only started happening when I integrated ckFinder with ckEditor where before the introduction of ckFinder, the upload tab was missing as desired/expected.
To truly get the desired effect, I had to put 'filebrowserUploadUrl : null' in my settings when calling CKEDITOR.replace to create the editor instance.
I can only assume that ckFinder does some extra magic that ignores some of the ckEditor settings or lack there of.
Hope that helps others.
Re: Removing Tabs From the Image Dialog
thanks for your message I couldn't figure out how to remove this tab.
Pierre
Re: Removing Tabs From the Image Dialog
filebrowserUploadUrl : null, //disable upload tab
filebrowserImageUploadUrl : null, //disable upload tab
filebrowserFlashUploadUrl : null, //disable upload tab
Re: Removing Tabs From the Image Dialog
Solved
Thats nice this solved my problem.