精品久久久久久综合日本,美女毛片一区二区三区四区,日本人妖一区视频,亚洲欧美日韩另类中文字幕组,久久国产福利免费,亚洲 日韩 中文字幕 制服,欧洲a∨免费观看网站,国产盗摄日韩精品一区二区欧美 http://www.vanhostingweb.com 分享技術(shù),共同進步 Thu, 21 Nov 2019 09:52:26 +0000 zh-Hans hourly 1 織夢ckeditor編輯器升級+代碼高亮插件 http://www.vanhostingweb.com/3183.html Thu, 21 Nov 2019 09:47:38 +0000 http://www.vanhostingweb.com/?p=3183 織夢ckeditor編輯器版本升級到4.7.0,如下圖所示

編輯窗口增加了添加附件功能

及代碼高亮功能

代碼高亮效果如下:

使用說明

【警告】使用前備份好這個文件
\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

 

]]>
織夢DedeCms編輯器增加中文字體 http://www.vanhostingweb.com/1790.html http://www.vanhostingweb.com/1790.html#respond Sat, 07 Jul 2018 14:30:11 +0000 http://www.vanhostingweb.com/?p=1790 織夢編輯器默認(rèn)沒有中文字體,如果想要設(shè)置各段落文字的字體,就得自己添加了.

QQ截圖20180707215033

 

修改方法:.打開include/ckeditor/ckeditor.js,搜索font_names,找到字體列表。

 

QQ截圖20180707215822

在 Arial/Arial前面添加所需的中文字體下面的字體,

 

微軟雅黑/微軟雅黑;宋體/宋體;黑體/黑體;仿宋/仿宋_GB2312;楷體/楷體_GB2312;隸書/隸書;幼圓/幼圓;

QQ截圖20180707222817

 

然后保存.

在后臺 生成→更新系統(tǒng)緩存→開始執(zhí)行,然后到編輯框看效果是不是下面的效果.記住,一定要清理緩存哦,不然不顯示的.

QQ截圖20180707222442

 

 

]]>
http://www.vanhostingweb.com/1790.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上傳圖片及下載遠程圖片無法加水印的解決方法

 

]]>
http://www.vanhostingweb.com/1455.html/feed 0
DEDECMS織夢UTF8版后臺ckeditor編輯器多圖上傳按鈕提示文字亂碼的解決方法 http://www.vanhostingweb.com/1443.html http://www.vanhostingweb.com/1443.html#respond Tue, 05 Dec 2017 09:11:43 +0000 http://www.vanhostingweb.com/?p=1443 默認(rèn)的DEDE系統(tǒng)UTF8版本,ckeditor編輯多圖上傳按鈕提示文字是亂碼。如下圖:
111

雖然不影響使用,但看上去不好看。解決方法:用編碼轉(zhuǎn)換工具把\include\ckeditor\plugins\multipic\plugin.js轉(zhuǎn)換一下。我這邊用的Dreamweaver打開,然后選擇修改菜單里面的頁面屬性,如下圖

333

確定保存,然后清除瀏覽器緩存,刷新頁面。就OK了。如下圖。

222

]]>
http://www.vanhostingweb.com/1443.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編輯器”,然后點擊進入官網(wǎng),找到下載頁面。找到我們想要的編輯器的版本,這點相信不要我多說了。下載下來,然后修改名稱為“ueditor”,并進行打包上傳到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

 

第三步:修改配置
進入網(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