How can I show the "Upload" tab in CKEditor?
- by Hermet
Hi guys, I've checked the CKEditor developer documentation and also some solved questions in here about this editor but couldn't find one which helped me.
The thing is, I have set up CKEditor and when I get into the images dialog I can't see any "Upload" tab.
I am trying to set up a custom file uploader, and according to the documentation is something like this:
<script type="text/javascript">
CKEDITOR.replace( 'cuerpo',
{
filebrowserBrowseUrl : '/imgs/explorador.php',
filebrowserUploadUrl : '/imgs/subirImagenes.php'
});
</script>
Thank you, and apologies for my English.