include_once无法打开流:没有这样的文件或目录 - Wordpress

时间:2016-10-19 14:44:51

标签: php wordpress .htaccess magento

只是一个新手问题,但我不知道如何处理这个错误。

http://mobitel.esy.es/

  

警告:   include_once(/home/u320415047/public_html/wp-content/themes/thestore/lib/thestore-metaboxes.php):   无法打开流:没有这样的文件或目录   /home/u320415047/public_html/wp-content/themes/thestore/functions.php   在第8行

     

警告:include_once():打开失败   '/home/u320415047/public_html/wp-content/themes/thestore/lib/thestore-metaboxes.php'   包含(include_path ='。:/ opt / php-5.5 / pear')in   /home/u320415047/public_html/wp-content/themes/thestore/functions.php   在第8行

     

警告:   include_once(/home/u320415047/public_html/wp-content/themes/thestore/lib/custom-config.php):   无法打开流:没有这样的文件或目录   /home/u320415047/public_html/wp-content/themes/thestore/functions.php   第9行

     

警告:include_once():打开失败   '/home/u320415047/public_html/wp-content/themes/thestore/lib/custom-config.php'   包含(include_path ='。:/ opt / php-5.5 / pear')in   /home/u320415047/public_html/wp-content/themes/thestore/functions.php   第9行

2 个答案:

答案 0 :(得分:0)

看起来您的主题部分已损坏或未正确上传。它告诉你,你错过了一些它试图包含的文件:

  • 可湿性粉剂内容/主题/ thestore / LIB /定制的config.php
  • 可湿性粉剂内容/主题/ thestore / LIB / thestore-metaboxes.php

仔细检查那些文件是否存在,如果没有,请尝试重新安装主题

答案 1 :(得分:0)

在wordpress中,当你在functions.php中包含文件时,你必须使用内置的get_template_directory()函数引用正确的文件路径

include( get_template_directory() .'/file.php' );