咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
发现各别国外空间再安装ECSHOP时遇到的问题,以全新向导模式安装时遇到具体的PHP警告如下:
Warning: date_default_timezone_get(): 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 ‘UTC’ for ’8.0/no DST’ instead in C:wwwrootincludeslib_installer.php on line 223
以上提示是说明由于PHP默认的时间区域设置问题导致的警告,导致数据库那段过不去而无法完成安装,我门提供两种解决办法如下:
1. 修改includeslib_installer.php文件,在这个文件顶部<?php之内加上如下PHP代码:
date_default_timezone_set ('Asia/Shanghai');
这个是临时的解决办法,可以帮你成功安装数据库,长久之计还是要采用方法2。
2. 修改服务器的PHP配置文件。
打开PHP.INI文件搜索到; date.timezone = 去掉前面的注释;号,然后改成date.timezone =Asia/Shanghai,保存配置文件,重启你的服务器。