码迷,mamicode.com
首页 > Web开发 > 详细

关于ECSHOP模板架设的服务器php版本过高报错的解决方法(二)

时间:2017-01-10 12:58:16      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:ready   调用   参数   意思   .com   config   int   ant   ace   

ECShop安装之后,在后台发现一个错误,这个错误提示的意思:mktime()方法不带参数被调用时,会被抛出一个报错提示。

ECShop安装之后,在后台发现一个错误提示:

Strict Standards: mktime(): You should be using the time() function instead in :\wamp\www\dqzhubao.com\shinamondadmin\sms_url.php on line 31

Strict standards: mktime(): You should be using the time() function instead in D:\wamp\www\dqzhubao.com\shinamondadmin\shop_config.php on line 33

这个错误提示的意思:mktime()方法不带参数被调用时,会被抛出一个报错提示。

找到文件第31行:

$auth = mktime();

将mktime()替换成time()方法,代码为:

$auth = time();

ECShop后台界面设置时候会出现一个错误  Notice: Constant IN_ECS already defined in D:\wamp\www\dqzhubao.com\shinamondadmin\editor\index_module_xn.php on line 3

找到文件打开发现define(‘IN_ECS‘, true);删除一个就可以解决当前这个问题了

关于ECSHOP模板架设的服务器php版本过高报错的解决方法(二)

标签:ready   调用   参数   意思   .com   config   int   ant   ace   

原文地址:http://www.cnblogs.com/sunny520/p/6268833.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!