警告:include(include / about.php):无法打开流:第7行的C:\ xampp \ htdocs \ site \ index.php中没有此类文件或目录

时间:2018-04-24 10:38:49

标签: php xampp

我在代码中遇到问题,请帮助我解决问题

  

警告:include(include / about.php):无法打开流:没有这样的   第7行的C:\ xampp \ htdocs \ site \ index.php中的文件或目录

     

警告:include():无法打开'include / about.php'以包含   (include_path ='C:\ xampp \ php \ PEAR')在C:\ xampp \ htdocs \ site \ index.php中   第7行

6 个答案:

答案 0 :(得分:2)

您需要确保文件的路径正确,因为找不到该路径。或删除该代码。

答案 1 :(得分:0)

您只需选择正确的路径即可。所以取决于文件的位置。也许你可以了解你的文件所在的位置以及你试图插入以下代码的文件的位置..

include(../include/about.php)

答案 2 :(得分:0)

Plesase把引用放在

inlcude "include/about.php";

不应该有用;

答案 3 :(得分:0)

' about.php'在您链接的路径中不存在。纠正路径。 这是一个例子:

include '/../about.php';

答案 4 :(得分:0)

我遇到了同样的问题,我发现主题的 functions.php 文件具有调用此模板的函数。我删除了该功能,问题得到纠正。我删除的此功能是:

/*All jQuery Post should use a different single file*/
add_filter( 'single_template', function ($single_template) {
 global $post;
if ( in_category( 'jquery' ) ) {
      $single_template = dirname( __FILE__ ) . '/single-jquery.php';
}
return $single_template;
}, 10, 3 );
/*End*/

希望对您有帮助。

答案 5 :(得分:0)

使用require代替include

require("handlers/register-handler.php");

Mac OS X