服务器之家:专注于服务器技术及软件下载分享
分类导航

DEDECMS|帝国CMS|Discuz|PHPCMS|Wordpress|ZBLOG|ECSHOP|苹果CMS|极致CMS|CMS系统|

服务器之家 - 建站程序 - 帝国CMS - 帝国下载系统 V2.5 增加FCKeditor编辑器的方法

帝国下载系统 V2.5 增加FCKeditor编辑器的方法

2019-09-18 13:31帝国cms开发网 帝国CMS

帝国下载系统 V2.5 增加FCKeditor编辑器的方法,需要的朋友可以参考下。

下载 FCKeditor 放在网站根目录 

admin/AddSoft.php 
第80行 
$softsay=htmlspecialchars($r[softsay]); 改成 $softsay=$r[softsay]; 

data/form/1.php 
第224行 
<textarea name="softsay" cols="67" rows="12" style="WIDTH:100%"><?=$softsay?></textarea> 改成 <?=$oFCKeditor->Create();?> 

在顶部?>前增加 
include("../FCKeditor/fckeditor.php") ; //FCKeditor 包含文件 
$oFCKeditor = new FCKeditor('softsay') ; 
$oFCKeditor->BasePath = "../FCKeditor/" ; 
$oFCKeditor->Value = "$softsay";

延伸 · 阅读

精彩推荐