dede附件上传图标不显示
解决方法:打开include/ckeditor/plugins/addon/plugin.js
找到以下代码:
// Register the toolbar button.
editor.ui.addButton( 'Addon',
{
label : '附件',
icon : 'http://desdevcms.com/images/addon.gif',
command : pluginName
});
替换:
icon : 'http://desdevcms.com/images/addon.gif'
为
icon : '/include/ckeditor/images/addon.gif'
原因:该附件上传图标默认引用的是织梦官方的图片,现已失效。
dede附件上传后附件地址无法自动选中
解决办法:
1、include
目录下dialog
下select_soft.php
中添加必须的传值,如下:
找到:
<input type='hidden' name='job' value='upload' />
在这一行后面增加
<input type='hidden' name='CKEditorFuncNum' value="<?php echo isset($CKEditorFuncNum)? $CKEditorFuncNum : 1;?>"/>
完美解决
网友评论