ECSHOP 搬站出现 Strict Standards: Non-static method cls_image::gd_version() should not be called statically in */includes/lib_base.php on line 346 错误
原因:
搬站的新服务器为5.5的php版本,是因为PHP版本太高兼容性问题。ecshop建议用php5.2的版本。如果无法修改版本可以参考下面解决办法。
解决办法:
这个错误的的处理是修改文件:\includes\cls_image.php 第678行,把
function gd_version()
改成
static function gd_version()
即可。如图: