PHP错误 - 无法打开文件

时间:2013-03-06 15:34:57

标签: php header include warnings

我正在构建一个小型PHP系统,我无法打开CSS样式,PHP包含函数和图像等文件。

我也遇到了一些错误:

Warning: include(includes/functions.php) [function.include]: failed to open stream: No such file or directory in /home/chezki/public_html/XXX.XXX/cp/CMS/index.php on line 2

Warning: include(includes/functions.php) [function.include]: failed to open stream: No such file or directory in /home/chezki/public_html/XXX.XXX/cp/CMS/index.php on line 2

Warning: include() [function.include]: Failed opening 'includes/functions.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/chezki/public_html/XXX.XXX/cp/CMS/index.php on line 2

Built by YYY.YYY
logo  // Thats the Logo alt

Fatal error: Call to undefined function getlists() in /home/chezki/public_html/XXX.XXX/cp/CMS/index.php on line 28
Title   Actions  // Some images alt

编辑:在Windows上,它没关系,但在Linux上,它正在做这些错误 更多编辑:解决了

2 个答案:

答案 0 :(得分:0)

根据您的错误消息,您的脚本似乎是:

/home/chezki/public_html/XXX.XXX/cp/CMS/index.php

您正在尝试加载此文件:

includes/functions.php

由于收到此错误消息:

  

没有这样的文件或目录

......显而易见的结论是该文件不存在:

/home/chezki/public_html/XXX.XXX/cp/CMS/includes/functions.php

如果不是这样,请随时编辑您的问题并提供更多详细信息。

编辑:该文件必须具有该名称。如果它被称为例如Functions.php,这是一个不同的文件。

答案 1 :(得分:-1)

您有权限问题。由于权限错误,您的Web服务器无法读取functions.php。使用chown和chmod调整权限。