編輯窗口增加了添加附件功能
及代碼高亮功能
代碼高亮效果如下:
【警告】使用前備份好這個文件
\include\inc\inc_fun_funAdmin.php
\include\dialog\select_images.php
\include\dialog\select_media.php
\include\dialog\select_soft.php
選擇程序?qū)?yīng)的編碼文件夾,對應(yīng)的覆蓋進去,清空瀏覽器臨時文件,刷新后臺,使用ckeditor編輯器。
前臺模板頁面顯示代碼高亮,在內(nèi)容模板里加入以下代碼即可。
<link rel="stylesheet" href="/include/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai_sublime.css">
<script src="/include/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js"></script>
<style>
<!--解決代碼換行+圓角-->
pre{font-size:inherit;line-height: inherit;font-family: inherit;white-space: pre-wrap;white-space: -moz-pre-wrap;white-space: -pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;word-break: break-all;border-radius: 4px;}
</style>
百度網(wǎng)盤1
提取碼: w8j6
百度網(wǎng)盤2
提取碼: i1fu
]]>
修改方法:.打開include/ckeditor/ckeditor.js,搜索font_names,找到字體列表。
在 Arial/Arial前面添加所需的中文字體下面的字體,
微軟雅黑/微軟雅黑;宋體/宋體;黑體/黑體;仿宋/仿宋_GB2312;楷體/楷體_GB2312;隸書/隸書;幼圓/幼圓;
然后保存.
在后臺 生成→更新系統(tǒng)緩存→開始執(zhí)行,然后到編輯框看效果是不是下面的效果.記住,一定要清理緩存哦,不然不顯示的.
]]>
2.打開include下的inc文件夾內(nèi)的inc_func_funcAdmin.php找到184行,在下面放入下面的代碼,然后保存。這段代碼是只有一個編輯器的情況下使用。
//百度編輯器
else if($GLOBALS['cfg_html_editor']=='ueditor')
{
$fvalue = $fvalue=='' ? '<p></p>' : $fvalue;
$code = '<script type="text/javascript" charset="utf-8"
src="/include/ueditor/ueditor.config.js"></script>
<script type="text/javascript" charset="utf-8"
src="/include/ueditor/ueditor.all.js"></script>
<link rel="stylesheet" type="text/css"
href="/include/ueditor/themes/default/css/ueditor.css"/>
<textarea name="'.$fname.'" id="'.$fname.'"
style="width:100%;height:400px;">'.$fvalue.'</textarea>
<script type="text/javascript">var ue = new
baidu.editor.ui.Editor();ue.render("'.$fname.'");</script>';
if($gtype=="print")
{
echo $code;
}
else
{
return $code;
}
}
下面的代碼是多個編輯器時使用的
//百度編輯器
else if($GLOBALS['cfg_html_editor']=='ueditor')
{
$fvalue = $fvalue=='' ? '<p></p>' : $fvalue;
$code = '<script type="text/javascript" charset="utf-8" src="http://apps.bdimg.com/libs/jquery/1.6.4/jquery.min.js"></script><!--需要jquery解決多個百度編輯器同時使用-->';
$code .= '<script type="text/javascript" charset="utf-8" src="'.$GLOBALS['cfg_cmspath'].'/include/ueditor/ueditor.config.js"></script>';
$code .= '<script type="text/javascript" charset="utf-8" src="'.$GLOBALS['cfg_cmspath'].'/include/ueditor/ueditor.all.min.js"></script>';
$code .= '<script type="text/javascript" charset="utf-8" src="'.$GLOBALS['cfg_cmspath'].'/include/ueditor/lang/zh-cn/zh-cn.js"></script>';
$code .= '<link rel="stylesheet" type="text/css" href="'.$GLOBALS['cfg_cmspath'].'/include/ueditor/themes/default/css/ueditor.css"/>';
$code .= '<script type="text/plain" name="'.$fname.'" id="'.$fname.'">'.$fvalue.'</script>';
if($bbcode)
{
$code .= '<script type="text/javascript">jQuery.noConflict();jQuery(function(){var ue = UE.getEditor("'.$fname.'",{toolbars:[["Source","|",
"bold", "italic", "underline","|","fontsize","forecolor","emotion","Undo", "Redo"]],initialFrameHeight:100});});</script>';
}
else
{
$code .= '<script type="text/javascript">jQuery.noConflict();jQuery(function(){var ue = UE.getEditor("'.$fname.'",{initialFrameHeight:450});});</script>';
}
if($gtype=="print")
{
echo $code;
}
else
{
return $code;
}
}
3.在后臺管理系統(tǒng)-->系統(tǒng)基本參數(shù)-->核心設(shè)置-->將 Html編輯器的值改為 ueditor ,然后保存。
織夢DEDECMS百度編輯器Ueditor上傳圖片及下載遠程圖片無法加水印的解決方法
]]>
雖然不影響使用,但看上去不好看。解決方法:用編碼轉(zhuǎn)換工具把\include\ckeditor\plugins\multipic\plugin.js轉(zhuǎn)換一下。我這邊用的Dreamweaver打開,然后選擇修改菜單里面的頁面屬性,如下圖
確定保存,然后清除瀏覽器緩存,刷新頁面。就OK了。如下圖。
]]>我在網(wǎng)上找的是說在184行后面放入下列代碼,結(jié)果放入后,發(fā)布上傳圖片啥的提示錯誤。網(wǎng)上搜索說是要把WINDOWS下的TEMP權(quán)限改成可讀寫。我就想不明白上傳網(wǎng)站圖片與系統(tǒng)臨時文件有毛的關(guān)系啊,后來仔細(xì)看了一下代碼,把下面代碼放入160行后,正常了。
{ $gtype = "print"; }
你可以搜索上面代碼,把下面的代碼放在它后面就行了。
else if($GLOBALS['cfg_html_editor']=='ueditor')
{
$fvalue = $fvalue=='' ? '<p></p>' : $fvalue;
$code = '<script type="text/javascript" charset="utf-8"
src="/include/ueditor/ueditor.config.js"></script>
<script type="text/javascript" charset="utf-8"
src="/include/ueditor/ueditor.all.js"></script>
<link rel="stylesheet" type="text/css"
href="/include/ueditor/themes/default/css/ueditor.css"/>
<textarea name="'.$fname.'" id="'.$fname.'"
style="width:100%;height:400px;">'.$fvalue.'</textarea>
<script type="text/javascript">var ue = new
baidu.editor.ui.Editor();ue.render("'.$fname.'");</script>';
if($gtype=="print")
{
echo $code;
}
else
{
return $code;
}
}
第三步:修改配置
進入網(wǎng)站后臺-->系統(tǒng)-->系統(tǒng)基本參數(shù)-->核心設(shè)置-->將 Html編輯器的值改為 ueditor ,然后保存。 更新一下緩存。到了這一步,那么恭喜你,文本編輯器已經(jīng)替換成功!