您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程

安装ecshop出现相关问题的解决方法

凌寒2024-12-23 23:14:30ecshop商城教程已有人查阅

导读ecshop安装出现appserver不存在,ecshop安装出现date_default_timezone_get()问题,是由于PHP默认的时间区域设置问题导致的警告

第一个问题
ecshop安装出现appserver不存在
# 解决方法参考
#另外解决方法,在文件的目录上处理 咋在根目录下直接安装
/ECShop_v3.6.0_UTF8_release170921/ECShop_v3.6.0_UTF8_release170921/source
#把下面三个文件复制过去
appserver check_file.php ecshop
#cp -r * /var/ /html
#给html文件夹阿帕奇授权
chown -R apache.apache html
再次进入安装页面
第二个问题
ecshop安装出现date_default_timezone_get()问题
在安装ecshop时遇到警告如下:
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 ...
是由于PHP默认的时间区域设置问题导致的警告
解决办法:
vim /etc/php.ini
打开php.ini大概在958找到; 找到date.timezone =去掉前面的注释;号,然后改成date.timezone ="Asia/Shanghai",保存配置文件,重启你的服务器。
```
########################################################################################
补充 日期2017年11月24日 作者:廖剑曦
########################################################################################
问题1
####Strict Standards: Non-static method cls_image::gd_version()
should not be called statically in /var/ /html/install/includes/lib_installer.php on line 31
解决方法
vim打开ECShop根目录下面的install/includes/lib_installer.php,然后搜索以下代码
function get_gd_version()
{
include_once(ROOT_PATH . 'includes/cls_image.php');
return cls_image::gd_version();
}
将以上代码修改为以下代码
function get_gd_version()
{
include_once(ROOT_PATH . 'includes/cls_image.php');
$cls_image=new cls_image();
return $cls_image->gd_version();
}

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签