'TinyMce(Responvie File manager) does not automatically fetch url of the image on mac's chrome
Responsive file manager is not automatically fetching the image url and putting it in source input field

After clicking on any of the images the image url should automatically be placed in the source input field
The image url should be placed here in the source input field but this is not working on chrome but it is working on safari
This is my tinyMce js code
<script>
var base_url = "http://localhost:8888/tinyMce";
$('textarea#tiny').tinymce({
height: 500,
plugins: [
"advlist autolink link image lists charmap print preview hr anchor pagebreak",
"searchreplace wordcount visualblocks visualchars insertdatetime media nonbreaking",
"table contextmenu directionality emoticons paste textcolor responsivefilemanager code"
],
toolbar1: "undo redo | bold italic underline | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | styleselect",
toolbar2: "| responsivefilemanager | link unlink anchor | image media | forecolor backcolor | print preview code ",
relative_url: true,
image_advtab: true ,
external_filemanager_path: base_url + "/tinymceOld/js/tinymce/plugins/filemanager/",
filemanager_title:"Responsive Filemanager",
external_plugins: { "filemanager" : base_url + "/tinymceOld/js/tinymce/plugins/filemanager/plugin.min.js"},
});
</script>
And this is my setting in config.php
/*
|--------------------------------------------------------------------------
| DON'T TOUCH (base url (only domain) of site).
|--------------------------------------------------------------------------
|
| without final / (DON'T TOUCH)
|
*/
'base_url' => ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") ? "https" : "http"). "://". @$_SERVER['HTTP_HOST'],
/*
|--------------------------------------------------------------------------
| path from base_url to base of upload folder
|--------------------------------------------------------------------------
|
| with start and final /
|
*/
'upload_dir' => '/tinyMce/tinymce/js/tinymce/plugins/filemanager/source/',
/*
|--------------------------------------------------------------------------
| relative path from filemanager folder to upload folder
|--------------------------------------------------------------------------
|
| with final /
|
*/
'current_path' => './source/',
/*
|--------------------------------------------------------------------------
| relative path from filemanager folder to thumbs folder
|--------------------------------------------------------------------------
|
| with final /
| DO NOT put inside upload folder
|
*/
'thumbs_base_path' => './thumbs/',
/*
|--------------------------------------------------------------------------
| path from base_url to base of thumbs folder
|--------------------------------------------------------------------------
|
| with final /
| DO NOT put inside upload folder
|
*/
'thumbs_upload_dir' => '/tinyMce/tinymce/js/tinymce/plugins/filemanager/thumbs/',
All the paths are correct since everything else is working, The images are uploading fine and downloading fine also Can anybody help me with this?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|

