明凯博客

关注网站技术,一个特立独行的程序员

PHP5.4环境下ECSHOP网站报错的解决方法

运行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));

解决办法 1 5.3 5.4以上版本的问题,应该也和配置有关 只要406行把这一句拆成两句就没有问题了

1
$tag_sel = array_shift(explode(' ', $tag));

改成:

1
2
$tag_arr = explode(' ', $tag);
$tag_sel = array_shift($tag_arr);

(实验过,绝对可行)因为array_shift的参数是引用传递的,5.3以上默认只能传递具体的变量,而不能通过函数返回值 解决办法 修改完了要记得清理缓存。

2、php5.4环境下安装ECshop出现includes/lib_base.php on line 346的解决方案。

将cls_image.php 中 function gd_version() 改成 static function gd_version() 即可。

3 网站后台验证码不显示PHP Strict Standards: Redefining already defined constructor for class captcha in D:\web\322\includes\cls_captcha.php on line 119

打开 includes/cls_captcha.php

找到下面这段代码

1
2
3
4
function __construct($folder = '', $width = 145, $height = 20)
{
$this->captcha($folder, $width, $height);
}

将它移到

1
function captcha($folder = '', $width = 145, $height = 20)

的上边。

,

相关文章

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注