Hi! I am using django-editor package for integration of ckeditor to my site. https://github.com/django-ckeditor/django-ckeditor
Default configuration works just fine exept one thing.
When I click image button, i get image propertuies window.
I click Upload tab
Click Browse and select image file on my local hard drive.
Click Send to server
The image upload happens and browser displays Image Info tab.
In URL filed I see the new image url like: media/uploads/2015/01/10/imagename.jpg
Issue: the URL name does not have leading slash in its name, so the server looks for it relative the current page, which is wrong.
How can I configure CKEditor (or file uploader) to make sure the path looks like below:
/media/uploads/2015/01/10/imagename.jpg