ecshop FCK編輯器換kindeditor編輯器
下載最新版的kindeditor解壓到include命名為kindeditor檔案:admin/includes/lib_main.php找到
換成function create_html_editor($input_name, $input_value = )
{
global $smarty;
$editor = new FCKeditor($input_name);
$editor->BasePath = ../includes/fckeditor/;
$editor->ToolbarSet = Normal;
$editor->Width = 100%;$editor->Height = 320;
$editor->Value = $input_value;
$FCKeditor = $editor->CreateHtml();
$smarty->assign(FCKeditor, $FCKeditor);
}
然後修改kindeditro/php/上傳目錄修改includes/kindeditor/php/upload_json.php如下:瀏覽伺服器路徑修改includes/kindeditor/php/file_manager_json.php如下:function create_html_editor($input_name, $input_value = )
{
global $smarty;
$kindeditor=" id="$input_name" name="$input_name" style=width:700px;height:300px;>$input_value "; $smarty->assign(FCKeditor, $kindeditor);}