当前位置:首页 > CMS教程 > ecshop > 列表

配置ecshop 后台管理报错

发布:smiling 来源: PHP粉丝网  添加日期:2014-07-08 16:37:22 浏览: 评论:0 

安装好后出现问题如下:Strict standards: Only variables should be passed by reference in \includes\lib_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 \includes\cls_template.php on line 418

解决方法如下:

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

修改为:

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

这是因为php版本高了之后,方法只支持传递变量.

Tags: 配置ecshop 后台管理报错

分享到:

相关文章