dede上传附件图标不显示以及附件上传后附件地址无法自动选中

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目录下dialogselect_soft.php中添加必须的传值,如下:

找到:


在这一行后面增加


完美解决

你可能感兴趣的:(dede上传附件图标不显示以及附件上传后附件地址无法自动选中)