I have integrated Rich File Manager with Laravel 5.3.20 using the default configuration provided below:
Javascript
<script>
CKEDITOR.replace( 'textarea', {
filebrowserBrowseUrl: '{!! url('gallery/index.html') !!}',
///ImageBrowser : true,
autoUpdateElement:true,
language:'en'
});
</script>
The URL for images in the textarea is incorrect.
<p><img alt="" src="http://website.dev/gallery/connectors/php/filemanager.php?mode=readfile&path=%2Fae.jpg&config=filemanager.config.json&time=1477642950519" style="height:960px; width:720px" /></p>
All files, folders, and subfolders have been updated to userfiles. However, the image URL that needs to be inserted into the Database within the textarea is showing an incorrect URL as mentioned above.
FileManager Configuration
... (remaining code excluded for brevity) ...