优选主流主机商
任何主机均需规范使用

如何在帝国下载系统 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″><?=$softsay?></textarea> 改成 <?=$oFCKeditor->Create();?>

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

未经允许不得转载:搬瓦工中文网 » 如何在帝国下载系统 V2.5 中成功添加FCKeditor编辑器