Hey,
i need to integrate file manager in to ckeditor.
But because of some problem in my rapid application development framework i can't add java-script code like this.
instead of previous way, can we set the filebrowserBrowseUrl inside of config.js file.
i need to integrate file manager in to ckeditor.
But because of some problem in my rapid application development framework i can't add java-script code like this.
<script type='text/javascript'>
window.onload = function()
{
CKEDITOR.replace( 'editor1',{
filebrowserBrowseUrl: 'upload/browse.php'});
}
</script>
instead of previous way, can we set the filebrowserBrowseUrl inside of config.js file.

Re: how to set filebrowserBrowseUrl on config.js
CKEDITOR.editorConfig = function( config ) { config.filebrowserBrowseUrl = 'upload/browse.php'; };Re: how to set filebrowserBrowseUrl on config.js
Hi,
Hi,
when i try to upload image using browse server its showing following error
" The requested URL /upload/browse.php was not found on this server. "
So can you tell me how to fix it?
Well, this means you have no
Well, this means you have no file browser existing on your server. You can either use an ready-made product like CKFinder or create a custom file uploader by yourself.
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!