安装data()函数问题失败,如何处理?

2016-07-07 15:14 来源:www.chinab4c.com 作者:ecshop专家

创建配置文件............成功
创建数据库............成功
安装数据............成功
创建管理员帐号............失败


Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Hong_Kong' for 'HKT/8.0/no DST' instead in /var/www/shop/includes/lib_time.php on line 29
OK

回答:
在install/includes/init.php文件里加入一句
date_default_timezone_set ('Asia/Shanghai');
试试行不行。

例如加在这个位置
  1. <?php
  2. date_default_timezone_set ('Asia/Shanghai');
  3. /* 报告所有错误 */
  4. @ini_set('display_errors', 1);
  5. error_reporting(E_ALL ^ E_NOTICE);
复制代码

或者在php.ini中添加。。。。

date.timezone ="Asia/Shanghai"

按二楼的
已搞定
谢谢

太好了
有了解決辦法

在install/includes/init.php文件里加入一句
date_default_timezone_set ('Asia/Shanghai');


收藏了,以备后用,虽然以前装其他的从来没遇到过创建账号失败。

这个是很老版本的问题了。现在不会有这个问题