include "Uploader.class.php";
在下面添加:
require_once("../../common.inc.php");
require_once("../../image.func.php");
二、打開 \include\ueditor\php\Uploader.class.php 找到
$this->stateInfo = $this->stateMap[0];
在124行左右,在它下面加上
@WaterImg($this->filePath, 'down');
在258行左右,在它下面加上
@WaterImg($filePath, 'down');
親測有效
織夢DEDECMS安裝百度編輯器ueditor的方法
]]>
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上傳圖片及下載遠(yuǎn)程圖片無法加水印的解決方法
]]>
這里說的方法是在dedecsm5.7織夢整合百度編輯器ueditor最新1.4.3方法 基礎(chǔ)之上 出現(xiàn)的問題??不過網(wǎng)上大多教程亦如此
核心代碼
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%;">'.$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;
}
}
在每次實(shí)例化對象的時候 都會引入js
以上問題的解決辦法就是??頁面值引用一次js
圖中紅色代碼部分
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%;">'.$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;
}
}
在inc_func_funcAdmin.php 將這三行代碼剪切? ?至 需要引入編輯器的頁面 如后臺的發(fā)布文章模板頁面 article_add.htm? ?修改文章的模板頁面 article_edit.htm等等??放在頭部的head區(qū)域 原則是在實(shí)例化編輯器之前
inc_func_funcAdmin.php部分
article_add.htm部分
]]>
我在網(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;
}
}
第三步:修改配置
進(jìn)入網(wǎng)站后臺-->系統(tǒng)-->系統(tǒng)基本參數(shù)-->核心設(shè)置-->將 Html編輯器的值改為 ueditor ,然后保存。 更新一下緩存。到了這一步,那么恭喜你,文本編輯器已經(jīng)替換成功!