ecshop提示Strict Standards: Non-static method cls_image::gd_version()
发布:smiling 来源: PHP粉丝网 添加日期:2014-12-02 14:52:19 浏览: 评论:0
下面我们一起来看在使用ecshop提示Strict Standards:Non-static method cls_image::gd_version() should not be called statically错误问题解决办法吧。
在使用ecshop时提示:
Strict Standards: Non-static method cls_image::gd_version() should not be called statically in E:/wwwroot/weirenchou/includes/lib_base.php on line 346
这个错误,搜索问题原来是php版本的问题,我是用的php5.4版本的,解决办法如下:
找到346行把:
return cls_image::gd_version()
替换成:
- $p = new cls_image();
- //开源软件:phpfensi.com
- return $p->gd_version();
这样就行了,由于php版本不同导致的问题.
Tags: Standards:Non-static cls_image
相关文章
- ·Ecshop安装过程中的的问题:cls_image::gd_version()和不支持JPEG(2015-09-29)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)