配置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 后台管理报错
相关文章
- ·配置ecshop 后台管理报错(2014-07-08)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)