echsop php5.4,ecshop2.7.3碰上php5.4各种错误问题处理

1 php5.4下安装的时候处理问题,Strict Standards: Non-static method cls_image::gd_version() should not be called statically in installincludeslib_installer.php on line 31

解决:找到install/includes/lib_installer.php中的第31行 return cls_image::gd_version();然后在找到include/cls_image.php中的678行,发现gd_version()方法未声明静态static,所以会出错。这时候只要:

将function gd_version()改成static function gd_version()即可。

2 安装好后出现Warning: require(languages//common.php): failed to open stream: No such file or directory in includesinit.php on line 120

缓存问题 缺少配置信息 缺少文件tempstatic_caches/shop_config.php

经测试在ecshop论坛http://help.ecshop.com/data/backup/ECShop_V2.7.3_UTF8_release1106.rar下载的文件有问题,重新到http://download.ecshop.com/2.7.3/ECShop_V2.7.3_UTF8_release1106.rar 下载后测试没问题。

3 安装好后出现 Strict standards: Only variables should be passed by reference in includeslib_main.php on line 1329

$ext = end(explode(\’.\’, $tmp));

修改为:

$ext = explode(\’.\’,$tmp);

$ext = end($ext);

Strict standards: Only variables should be passed by reference in includescls_template.php on line 418

tag_sel = array_shift(explode(\’ \’, $tag));

修改为:

$tag_arr = explode(\’ \’, $tag); $tag_sel = array_shift($tag_arr);

array_shift() 的参数是引用传递的,5.3以上默认只能传递具体的变量,而不能通过函数返回值 end(&array) 也一样(后面也会有end的函数,也需要拆分为两行)。

修改后到后台更新缓存

4 后台 Strict standards: Redefining already defined constructor for class alipay in includesmodulespaymentalipay.php on line 85

后台更新缓存

5 Strict standards: mktime(): You should be using the time() function instead in adminsms_url.php on line 31

php版本问题 mktime()修改为 time()

6 Strict standards: Redefining already defined constructor for class alipay in includesmodulespaymentalipay.php on line 85Call Stack

这里是...

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值