當前位置:全科學識雲 > 校園範文 > 其他 > ecshop FCK編輯器換kindeditor編輯器
手機版

ecshop FCK編輯器換kindeditor編輯器

來源:全科學識雲 閱讀:1.94W 次
下載最新版的kindeditor解壓到include命名爲kindeditor
檔案:admin/includes/lib_找到

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

ecshop FCK編輯器換kindeditor編輯器
換成

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

然後修改kindeditro/php/上傳目錄修改includes/kindeditor/php/upload_如下:瀏覽服務器路徑修改includes/kindeditor/php/file_manager_如下:
//檔案儲存目錄路徑
$save_path = $php_path . ../../../images/upload/;
//檔案儲存目錄URL
$save_url = $php_url . ../../../images/upload/;

//根目錄路徑,可以指定絕對路徑,比如 /var/www/attached/
$root_path = $php_path . ../../../images/upload/;
//根目錄URL,可以指定絕對路徑,比如
$root_url = $php_url . ../../../images/upload/;

本文連結:https://www.qkxsy.com/xiaoyuanfw/qita/21joyd.html

Copyright © 2024. 全科學識雲 All right reserved.

文字美圖素材,版權屬於原作者。部分文章內容由網友提供推送時因種種原因未能與原作者聯繫上,若涉及版權問題,敬請原作者聯繫我們,立即處理。