Php Tinymce filemanager根本不工作+;未加载的语言

Php Tinymce filemanager根本不工作+;未加载的语言,php,javascript,html,tinymce,Php,Javascript,Html,Tinymce,我对tinymce的文件管理器有问题。我试着把它连接起来,但出了点问题。当我选择一些文本并尝试创建指向它的链接时。当我单击“链”图标,然后单击“浏览”按钮时,filemanager将加载,但不工作。我什么都不会做,而且也没有语言。每个标签都像:{#filelist.filename}。你能给我一些建议吗 这是我的初始化代码: tinyMCE.init({ width: "1000", height: "550", mode : "exact", elements

我对tinymce的文件管理器有问题。我试着把它连接起来,但出了点问题。当我选择一些文本并尝试创建指向它的链接时。当我单击“链”图标,然后单击“浏览”按钮时,filemanager将加载,但不工作。我什么都不会做,而且也没有语言。每个标签都像:
{#filelist.filename}
。你能给我一些建议吗

这是我的初始化代码:

tinyMCE.init({
    width: "1000",
    height: "550",
    mode : "exact",
    elements : "BODY,DESCRIPTION,LONG_DESCRIPTION, LONG_DESCRIPTION1, LONG_DESCRIPTION2, LONG_DESCRIPTION3, LONG_DESCRIPTION4, LONG_DESCRIPTION5",
    theme : "advanced",
    plugins : "imagemanager,filemanager,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist,autosave",
    theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
    theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,code,insertdate,inserttime,preview",
    theme_advanced_buttons3 : "forecolor,backcolor,|,tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,insertlayer,moveforward,movebackward,absolute",
    theme_advanced_buttons4 : "styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_statusbar_location : "bottom",
    theme_advanced_resizing : true,
    language: "en",
    template_external_list_url : "lists/template_list.js",
    external_link_list_url : "lists/link_list.js",
    external_image_list_url : "lists/image_list.js",
    media_external_list_url : "lists/media_list.js",
    style_formats : [
        {title : 'Bold text', inline : 'b'},
        {title : 'Red text', inline : 'span', styles : {color : '#ff0000'}},
        {title : 'Red header', block : 'h1', styles : {color : '#ff0000'}},
        {title : 'Example 1', inline : 'span', classes : 'example1'},
        {title : 'Example 2', inline : 'span', classes : 'example2'},
        {title : 'Table styles'},
        {title : 'Table row 1', selector : 'tr', classes : 'tablerow1'}
    ]
});
我不确定您是否需要它,但下面是filemanager的config.php文件中的代码 文件夹:


我希望这就足够了。

您是否在页面上为tiny添加了路径?:

<script type="text/javascript" src="YOUT_PATH/tiny_mce/tiny_mce.js"></script>
更改上载文件的路径

$mcFileManagerConfig['filesystem.path'] = $_SERVER['DOCUMENT_ROOT'].PATH_UPLOAD_FOLDER
$mcFileManagerConfig['filesystem.rootpath'] = $_SERVER['DOCUMENT_ROOT'].PATH_UPLOAD_FOLDER
ini_set('display_errors',0); // may be bug with languages
$mcFileManagerConfig['filesystem.path'] = $_SERVER['DOCUMENT_ROOT'].PATH_UPLOAD_FOLDER
$mcFileManagerConfig['filesystem.rootpath'] = $_SERVER['DOCUMENT_ROOT'].PATH_UPLOAD_FOLDER