不能创建管理员账户
解决方法
1.首先
在install/includes/init.php文件里加入一句 date_default_timezone_set ('Asia/Shanghai'); |
路径:根目录下install/includes/lib_installer.php
找到 include(ROOT_PATH . 'install/languages/' . $system_lang . '.php');
替换成
include(ROOT_PATH . 'install/languages/zh_cn.php');
ECShop出现Strict Standards: Only variables should be passed by reference in的解决方法
安装完毕ecshop的时候最上面出现了一个错误提示:
Strict Standards: Only variables should be passed by reference in /var/www/html/includes/cls_template.php on line 406
解决办法:
打开cls_template.php文件中发现下面这段代码:
$tag_sel = array_shift(explode(' ', $tag));
忘记说了,我的PHP版本是5.4.19,PHP5.3以上默认只能传递具体的变量,而不能通过函数返回值传递,所以这段代码中的explode就得移出来重新赋值了
$tagArr = explode(' ', $tag);
$tag_sel = array_shift($tagArr);
这样之后顶部的报错没掉了,左侧和底部的报错还需要去ecshop的后台点击清除缓存才能去除。