1

有没有人成功地将 kcfinder 集成到 tinymce 4?

下面的链接中有一个解决方案,但它不包含所需的所有源代码。

http://www.tinymce.com/forum/viewtopic.php?id=30896

4

2 回答 2

0

用这个:

tinyMCE.init({mode:"exact",
skin:"o2k7",           
mode: "exact",
width : "650",
height:"200",
paste_text_use_dialog : true,
skin_variant:"silver",
relative_urls : true,
convert_urls : false,
elements:"contents",
theme:"advanced",
content_css : "javascript/tinymce/custom_css.css",

plugins:"pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,safari,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist,autosave",

theme_advanced_buttons1:"bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,formatselect,fontselect,fontsizeselect, cut,copy,paste,pastetext",

theme_advanced_buttons2:"link,unlink,image,cleanup,code,|,forecolor,backcolor, table,advhr,|,sub,sup,|,fullscreen,|,bullist,numlist,outdent,indent,undo,redo",

// theme_advanced_buttons3:"table,advhr,|,sub,sup,|,fullscreen",
theme_advanced_toolbar_location :"top",
theme_advanced_toolbar_align        :"left",
theme_advanced_statusbar_location :"none",
theme_advanced_path                 : false,
paste_retain_style_properties   :"all",
theme_advanced_resizing         :false,
file_browser_callback:"openKCFinder"});

function openKCFinder(c,a,b,d){tinyMCE.activeEditor.windowManager.open({file:"javascript/kcfinder/browse.php?opener=tinymce&type="+b+"&dir="+b+"/public",title:"KCFinder",width:700,height:500,resizable:"yes",inline:true,close_previous:"no",popup_css:false},{window:d,input:c});return false};
于 2014-09-09T11:07:41.927 回答
0

你应该在你的服务器中复制 kcfinder 文件夹并设置 config.php 文件设置 uploadURL 和 uploadDIR

 'uploadURL' => "http://localhost/smartytest/upload/",
 'uploadDir' => "k:\xampp\htdocs\smartytest\upload\",
于 2014-04-01T12:32:02.457 回答