ecshop算是目前最成熟 好用的商城系统 ,小编最近在搭建商城系统 的时候,准备大功告成的时候竟然 在服务器上面不能正常上传图片,真的是急死了。问题情况是这样子的
上传图片时一直在进度条,接下来没有反应,但可以上传到服务器,可以在图像属性中浏览图片,正常情况应该图片上传到空间,马上回应地址等信息,这次没有,研究了一整天。用不同浏览器也看过了,ftp后台文件也覆盖过,不同电脑也试过,联系服务商询问权限问题,说不需要改的,后来干脆重装ec系统,还是老样子。 就是不会出现弹出框 you file has been successful upload 如果出现就是好的了。
小编网上查了好久,还是解决不了,竟然 在fckeditor上找不到 解决的方法,那只有给ecshop的后台换个编辑器,因为fckeditor上好像也不是太好用。下面重要点说下,如何用kindeditor替换fckeditor方法
kindeditor此编辑器可以让ecshop批量上传图片,可以插入代码,可以全屏编辑,可以插入地图、视频,进行更多word操作,设置字体。
步骤一:进入kindeditor的官网,http://kindeditor.net/index.php下载最新的编辑器版本,将文件上传到网站includes/目录下,注意,不要有多余的目录,要可以访问到includes/kindeditor/kindeditor-min.js
步骤二:
1、修改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);
}
替换为
function create_html_editor($input_name, $input_value = '')
{
global $smarty;
$kindeditor="<script charset='utf-8' src='../includes/kindeditor/kindeditor-min.js'></script>
<script>
var editor;
KindEditor.ready(function(K) {
editor = K.create('textarea[name="$input_name"]', {//www.lyecs.com
allowFileManager : true,
width : '100%',
height: '300px',
resizeType: 0 //固定宽高
});
});
</script>
<textarea id="$input_name" name="$input_name" style='width:100%;height:300px;'>$input_value</textarea>
<input type="submit" value="提交" />
";
$smarty->assign('FCKeditor', $kindeditor);
}
2、找到
includes/kindeditor/php/upload_json.php
将
//文件保存目录路径
$save_path = $php_path . '../attached/';
//文件保存目录URL
$save_url = $php_url . '../attached/';
替换为
//文件保存目录路径www.lyecs.com老杨ecshop二次开发
$save_path = $php_path . '../../../images/upload/';
//文件保存目录URL
$save_url = $php_url . '../../../images/upload/';
3、includes/kindeditor/php/file_manager_json.php
将
//根目录路径,可以指定绝对路径,比如 /var/www/attached/
$root_path = $php_path . '../attached/';
//根目录URL,可以指定绝对路径,比如 http://www.yoursite.com/attached/
$root_url = $php_path . '../attached/';
改为:
//根目录路径,可以指定绝对路径,比如 /var/www/attached/
$root_path = $php_path . '../../../images/upload/';
//根目录URL,可以指定绝对路径,比如 http://www.yoursite.com/attached/
$root_url = $php_url . '../../../images/upload/';
3、找到admin/template/goods_info.htm
<input type="button" value="{$lang.button_submit}" class="button" onclick="validate('{$goods.goods_id}')" />
修改为
<input type="submit" value="{$lang.button_submit}" class="button" onclick="validate('{$goods.goods_id}')" />
进后台刷新就可以了
小编通过此方法算是解决了这个不能正常上传图片的问题,希望对大家有所帮助