tinymce with plugin responsive-filemanager, does not show image

0

I have installed the filemanager to the tinymce editor. The plugin works well, uploads files from the local and saves them, creates directories etc.

The problem is that when I select an image to insert it in the editor, it does not do it correctly. In fact it does not copy the correct address of the image. These are the configurations and directories that I have:

Directories:

-Editor
  +ejemplo.html
  -js
   |---tinymce
       |---------filemanager
       |---------source
       |---------thumbs
       |---------plugins
                  |--------responsivefilemanager
                  |                       |----plugin.min.js
                  |--- etc..

config.php:

'base_url' => // por defecto, no tocar.
'upload_dir' => '/source/'
'current_path' => '../source/'
'thumbs_base_path' => '../thumbs/'

HTML and tinymce (js):

plugins: [ 'responsivefilemanager' ], // etc...
external_filemanager_path:"http://localhost/editor/js/tinymce/filemanager/",
filemanager_title:"Menejador de Archivos" ,
external_plugins: { "filemanager" : "http://localhost/editor/js/tinymce/filemanager/plugin.min.js"}

    
asked by Islam Linarez 31.03.2017 в 01:52
source

1 answer

0

it turned out, it was a silly detail, the URLs were certainly wrongly redirected, it was still necessary to include the main directory, / editor / in the php configuration

    
answered by 31.03.2017 в 03:19