天天看点

php ecshop 安装问题

ecshop   Strict Standards: Only variables should be passed by reference in cls_template.php 

相关的错误,

$tag_sel = array_shift(explode(' ', $tag));       
改成: $tag_arr = explode(' ', $tag);  $tag_sel = array_shift($tag_arr);      
然后删除temp文件夹再覆盖。      
然后有个错  需要改short_open_tag = Off为On