配置ecshop 后台管理报错
安装好后出现问题如下: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);
这是因为php版本高了之后,方法只支持传递变量.

