After installing hdi-master-tinymce I missed a filemaneger to upload images.
The solution to that is the following.
get roxy filemanager
get jquery 1.11.1
change the version of jquery to 1.11.1
in /fileman/index.html
[COLOR=“DimGray”]<!-- Place inside the <head> of your HTML -->
<script type=“text/javascript” src=“http://localhost/testordner32/tinymce/js/tinymce/tinymce.min.js”></script>
<script type=“text/javascript”>
tinymce.init({
selector: “textarea”,theme: “modern”,width: 680,height: 300,
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”
],
toolbar1: “undo redo | bold italic underline | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | styleselect”,
toolbar2: “| link unlink anchor | image media | forecolor backcolor | print preview code “, file_browser_callback: RoxyFileBrowser,
image_advtab: true ,
subfolder:””,
});
function RoxyFileBrowser(field_name, url, type, win) {
var roxyFileman = ‘http://localhost/testordner32/fileman/index.html’;
if (roxyFileman.indexOf("?") < 0) {
roxyFileman += “?type=” + type;
}
else {
roxyFileman += “&type=” + type;
}
roxyFileman += ‘&input=’ + field_name + ‘&value=’ + document.getElementById(field_name).value;
tinyMCE.activeEditor.windowManager.open({
file: roxyFileman,
title: ‘Roxy Fileman’,
width: 850,
height: 650,
resizable: “yes”,
plugins: “media”,
inline: “yes”,
close_previous: “no”
}, { window: win, input: field_name });
return false;
}
</script>
<!-- Place inside the <head> of your HTML -->[/COLOR]
Note, the path to “fileman/index.html” must be absolute
edit conf.json
point to the right directory and make sure it is writeable (770) by the webserver
"FILES_ROOT":"/testordner32/Userfiles",
That should do it.
Kind regards,
Jan