急急急!!!装完成后 Notice: Undefined variable 。。。Warning: require。。。

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

前台:
Notice: Undefined variable: data in /usr/vhome/3/9/4/394798.ctc-us1-g5.chinadns.net/www/includes/lib_base.php on line 1241

Warning: require(/usr/vhome/3/9/4/394798.ctc-us1-g5.chinadns.net/www/languages//common.php) [function.require]: failed to open stream: No such file or directory in /usr/vhome/3/9/4/394798.ctc-us1-g5.chinadns.net/www/includes/init.php on line 120

Fatal error: require() [function.require]: Failed opening required '/usr/vhome/3/9/4/394798.ctc-us1-g5.chinadns.net/www/languages//common.php' (include_path='.:/usr/vhome/3/9/4/394798.ctc-us1-g5.chinadns.net/www/') in /usr/vhome/3/9/4/394798.ctc-us1-g5.chinadns.net/www/includes/init.php on line 120

后台:
Notice: Undefined variable: data in /usr/vhome/3/9/4/394798.ctc-us1-g5.chinadns.net/www/includes/lib_base.php on line 1241

Warning: require(/usr/vhome/3/9/4/394798.ctc-us1-g5.chinadns.net/www/languages//admin/common.php) [function.require]: failed to open stream: No such file or directory in /usr/vhome/3/9/4/394798.ctc-us1-g5.chinadns.net/www/admin/includes/init.php on line 162

Fatal error: require() [function.require]: Failed opening required '/usr/vhome/3/9/4/394798.ctc-us1-g5.chinadns.net/www/languages//admin/common.php' (include_path='.:ROOT_PATH') in /usr/vhome/3/9/4/394798.ctc-us1-g5.chinadns.net/www/admin/includes/init.php on line 162

安装一切顺利 结果装完前台 提示以上错误 我的那几个文件夹以及所有子文件夹已经设成777

回答:
可能是你的缓存问题。用ftp 查看
temp\static_caches
的文件权限,这个部分的缓存是iis或是appche生成的,他们拥有管理权限,你可以联系空间商帮忙解决下

另外
那就是在上传文件的时候需要使用二进制上传,这个是在UNIX主机特有的一点。否则的话很多文件在UNIX主机上可能无法正确运行。

我传的时候都是用2进制传的temp\static_caches已经被我改成777
我确信我传的文件没错还怎么办 拜托啦

我确信我穿的文件没错 而且是用二进制传的 temp\static_caches权限也是77 还怎么办啊拜托啦 着急啊

我确信我穿的文件没错 而且是用二进制传的 temp\static_caches权限也是77 还怎么办啊拜托啦 着急啊

基本上可以确定,是你的商城空间 data 目录下的 config.php 文件损坏了,或者内容被清空了。需要重新配置一份,覆盖一下才可以。

代码样本,只需要将里面的 数据库文件、密码修改一下,其它的参数基本上不用动:



  1. <?php
  2. // database host
  3. $db_host= "localhost:3306";
  4. // database name
  5. $db_name= "a0713172302";
  6. // database username
  7. $db_user= "a0713172302";
  8. // database password
  9. $db_pass= "44674865";
  10. // table prefix
  11. $prefix = "ecs_";
  12. $timezone = "UTC";
  13. $cookie_path = "/";
  14. $cookie_domain = "";
  15. $session = "1440";
  16. define('EC_CHARSET','utf-8');
  17. define('ADMIN_PATH','admin');
  18. define('AUTH_KEY', 'this is a key');
  19. define('OLD_AUTH_KEY', '');
  20. define('API_TIME', '2010-7-10 22:40:00');
  21. ?>
复制代码