gpt4 book ai didi

tinymce - 在 TinyMCE 中集成 Roxy Fileman

转载 作者:行者123 更新时间:2023-12-04 22:12:42 32 4
gpt4 key购买 nike

我正在尝试将 Roxy Fileman ( http://www.roxyfileman.com ) 集成到 TinyMCE 中。

单击 TinyMCE 的触发图像后,无法使图标出现 Roxy Fileman,但它无法正常工作。

当我打开 Roxy Fileman 从这些错误中收到来自 Chrome 的明显警告时:

E_LoadingConf
E_ActionDisabled
加载语言文件时出错

我已经向 Roxy Fileman 的工作人员发送了消息,但没有得到答复。

谁能帮我整合这个?我需要一种在 TinyMCE 上上传照片的方法。

如果有人有任何其他插件表示我接受。

下面是我的代码:

<script type="text/javascript" src="js/tinymce/tinymce.min.js"></script>
<script>
// This must be set to the absolute path from the site root.
var roxyFileman = 'js/tinymce/plugins/fileman/index.html?integration=tinymce4';
$(function() {
tinyMCE.init({language : 'pt_BR', selector: 'textarea#elm1', menubar : false, plugins: 'advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking save table contextmenu directionality template paste textcolor',
toolbar: "insertfile undo redo | bold italic underline | alignleft aligncenter alignright alignjustify | link image | bullist numlist outdent indent | forecolor", file_browser_callback: RoxyFileBrowser});
});
function RoxyFileBrowser(field_name, url, type, win) {
var cmsURL = roxyFileman; // script URL - use an absolute path!
if (cmsURL.indexOf("?") < 0) {
cmsURL = cmsURL + "?type=" + type;
}
else {
cmsURL = cmsURL + "&type=" + type;
}
cmsURL += '&input=' + field_name + '&value=' + document.getElementById(field_name).value;
tinyMCE.activeEditor.windowManager.open({
file: cmsURL,
title: 'Upload de Arquivos',
width: 850, // Your dimensions may differ - toy around with them!
height: 650,
resizable: "yes",
plugins: "media",
inline: "yes", // This parameter only has an effect if you use the inlinepopups plugin!
close_previous: "no"
}, {
window: win,
input: field_name
});
return false;
}
</script>

*TinyMCE 是 4.0.16 (2014-01-31)。 Roxy'm 在 Windows 服务器上运行,支持 PHP 5.2.17。

感谢您的关注。

最佳答案

您是否尝试过更改 conf.json 文件
集成应该从自定义更改为:-

"INTEGRATION":         "tinymce4", 

并且可能在您的网络配置中添加
<system.webServer>
...
<staticContent>
<mimeMap fileExtension=".json" mimeType="application/json" />
</staticContent>
...

关于tinymce - 在 TinyMCE 中集成 Roxy Fileman,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21758333/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com