Reputation: 151
I'm trying to configure Responsive Filemanager 9 (http://www.responsivefilemanager.com/) for my project using TinyMCE4
My folder structure are:
TinyMCE:
http://localhost/tinyPaintWeb/
http://localhost/tinyPaintWeb/index.html
http://localhost/tinyPaintWeb/plugins/responsivefilemanager
Filemanager
http://localhost/filemanager
source folder (just for testing)
http://localhost/lesFiles
I'm following the documentation instructions as follows:
config.php
$base_url="http://localhost";
$upload_dir = '/lesFiles/';
$current_path = '../lesFiles/';
$thumbs_base_path = '../lesFiles/thumbs/';
index.html (tiny configuration)
plugins: ["compat3x print pagebreak fullscreen code image table paintweb responsivefilemanager",],
image_advtab: true,
external_filemanager_path:"/filemanager/",
filemanager_title:"Responsive Filemanager" ,
external_plugins: { "filemanager" : "/filemanager/plugin.min.js"},
toolbar: "undo redo pagebreak | bold italic | table | paintwebEdit image responsivefilemanager | fullscreen",
the file manager icon appears in the Tiny, but when i click it, only appears a dialog with the title "Responsive Filemanager" and blank content. what i missing???
thank you
Upvotes: 1
Views: 3163
Reputation: 3363
You need to activate the mbstring extension in your php settings: see: Unable to call the built in mb_internal_encoding method?
Upvotes: 1