亚洲欧美一区二区三区久久,永久免费无码网站在线观看,成人综合亚洲网站,亚洲AV无码成人精品电影在线,国产免费破外女真实出血视频aⅴ,啦啦啦啦免费视频观看在线1,高清.另类.激情人妻图,欧美日韩三级免费一区 http://www.vanhostingweb.com 分享技術(shù),共同進(jìn)步 Fri, 15 Dec 2017 11:51:21 +0000 zh-Hans hourly 1 織夢DEDECMS百度編輯器Ueditor上傳圖片及下載遠(yuǎn)程圖片無法加水印的解決方法 http://www.vanhostingweb.com/1463.html http://www.vanhostingweb.com/1463.html#respond Tue, 12 Dec 2017 11:24:23 +0000 http://www.vanhostingweb.com/?p=1463 一、打開 \include\ueditor\php\action_upload.php 找到

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的方法

 

 

]]>
http://www.vanhostingweb.com/1463.html/feed 0
織夢DEDECMS安裝百度編輯器ueditor的方法 http://www.vanhostingweb.com/1455.html http://www.vanhostingweb.com/1455.html#respond Tue, 12 Dec 2017 03:24:46 +0000 http://www.vanhostingweb.com/?p=1455 1.根據(jù)你的網(wǎng)站編碼,下載相應(yīng)編碼的編輯器包。在include文件夾里,新建一個名為ueditor文件夾,把剛才下載的文件放到里面。

1

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;
}
}

2

下面的代碼是多個編輯器時使用的

//百度編輯器
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 ,然后保存。



3 4

 

織夢DEDECMS百度編輯器Ueditor上傳圖片及下載遠(yuǎn)程圖片無法加水印的解決方法

 

]]>
http://www.vanhostingweb.com/1455.html/feed 0
DEDECMS后臺新建模型多個字段調(diào)用百度編輯器 http://www.vanhostingweb.com/917.html http://www.vanhostingweb.com/917.html#respond Wed, 17 Aug 2016 17:02:55 +0000 http://www.vanhostingweb.com/?p=917 dede后臺編輯器更換為百度編輯器ueditor 之后 正常情況下 你不會發(fā)現(xiàn)問題??但是如果 你的模型比如文章模型 添加了自定義字段 而且類型為HTML格式 或者文本保存HTML格式 當(dāng)你發(fā)布文章編輯文章時 你會發(fā)現(xiàn) 只有第一個編輯器顯示出來??還有最下面的 文章內(nèi)容

這里說的方法是在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部分

 

QQ截圖20160818010417

]]>
http://www.vanhostingweb.com/917.html/feed 0
利用百度的(ueditor)編輯器替換dedecms自帶的編輯器 http://www.vanhostingweb.com/869.html http://www.vanhostingweb.com/869.html#respond Wed, 18 May 2016 08:52:47 +0000 http://www.vanhostingweb.com/?p=869 第一步:下載相對應(yīng)編輯器的版本
首先,去百度搜索“百度ueditor編輯器”,然后點(diǎn)擊進(jìn)入官網(wǎng),找到下載頁面。找到我們想要的編輯器的版本,這點(diǎn)相信不要我多說了。下載下來,然后修改名稱為“ueditor”,并進(jìn)行打包上傳到include目錄下。
溫馨提示:在安裝前,最好備份下所要修改的文件。
第二步:修改inc_func_funcAdmin.php文件。

我在網(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;
}
}

 

如下圖:QQ截圖20160518165624

 

第三步:修改配置
進(jìn)入網(wǎng)站后臺-->系統(tǒng)-->系統(tǒng)基本參數(shù)-->核心設(shè)置-->將 Html編輯器的值改為 ueditor ,然后保存。 更新一下緩存。到了這一步,那么恭喜你,文本編輯器已經(jīng)替換成功!QQ截圖20160518165720

]]>
http://www.vanhostingweb.com/869.html/feed 0
亚洲中文色欧另类欧美,久久久久久久激情,亚洲 日韩 欧美 另类 国产,中文字幕高清无码男人的天堂 www.sucaiwu.net