ecshop版本:ECShop_V2.7.3_UTF8_release1106php 版本 5.5---------------------------------------------------------------------------------------错误1:Strict Standards: Non-static method cls_image::gd_version() should not be called statically in ***\install\inc…
在安装Ecshop的时候,遇到两个问题: 1.Strict Standards: Non-static method cls_image::gd_version() should not be called statically in D:\X\www\ecshop\install\includes\lib_installer.php on line 31 解决:找到install/includes/lib_installer.php中的第31行   return cls_image::gd_v…
Ecshop安装过程中的的问题:cls_image::gd_version()和不支持JPEG 在安装Ecshop的时候,遇到两个问题: 1.Strict Standards: Non-static method cls_image::gd_version() should not be called statically in D:\X\www\ecshop\install\includes\lib_installer.php on line 31 解决:找到install/includes/…
晚上写东西的时候,报了一个错误: Call to undefined function imagecreatefromjpeg() 没有开启 jpeg 支持?原来是默认安装的 gd 扩展默认不支持 jpeg. 1.那么,来添加 jpeg 格式文件支持吧. #下载jpeg扩展包 wget http://www.ijg.org/files/jpegsrc.v8b.tar.gz #解压缩扩展包 tar -zxvf jpegsrc.v8b.tar.gz #安装 cd jpeg-8b ./configur…
随着ECSHOP的不断发展,越来越多的人成为了ECSHOP的忠实粉丝.由于每个人的服务器环境和配置都不完全相同,所以ECSHOP也接二连三的爆出了各种各样的错误信息.相信不少新手朋友在ECSHOP安装过程中都碰到过类似下面这样的错误提示吧.Strict Standards: Non-static method cls_image::gd_version() should not be called statically in /....../install/includes/lib_instal…
一.问题 最近在VS2015打开文件,提示未安装Style的Visual Studio语言支持,代码编辑Intellisense将不可用.服务器控件的标记Intellisense可能不起作用. Intellisense是智能感知,判断代码语法错误,不需要运行编译器再修正. 二.解决方法 vs2015中 工具--扩展和更新 搜索Microsoft ASP.NET and Web Tools 点击下载 安装.注意:安装时把VS2015关闭,不然安装会中止…
一,Ecshop首页出现报错:Only variables should be passed by referen 最近想安装一个ECSHOP商城上去,老是报错,出现下面这就话: Strict Standards: Only variables should be passed by reference in D:\**\includes\cls_template.php on line 406 第406行:$tag_sel = array_shift(explode(' ', $tag));…
在安装Ecshop的时候,遇到两个⚠️问题: Strict Standards: Non-static method cls_image::gd_version() should not be called statically in /install/includes/lib_installer.php on line 31 Strict Standards: Non-static method cls_image::gd_version() should not be called stat…
网上提示方法将install/includes/lib_installer.php以下内容修改后仍然提示失败: include(ROOT_PATH . 'install/languages/' . $system_lang . '.php'); 修改为 include(ROOT_PATH . 'install/languages/zh_cn.php'); 解决办法: 在install/includes/init.php文件里加入一句 date_default_timezone_set ('Asi…
[引子] 最近将ECShop框架网站从租用服务器搬家至阿里云,虽然模块及功能上已经被修改的面目全非了,但基础部分还在. 在这个过程中遇到了很多的WARNING与ERROR,解决方案如下. [环境] 服务器环境由PHP5.3+MySQL5.6更新至PHP5.6+MySQL5.7 [数据库] 利用navicat for mysql工具导入导出,出现异常:Invalid default value for 'create_time',具体可参考上一篇随笔.http://www.cnblogs.com/…