-1

我正在构建一个小型 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 上,它正在做这些错误 更多编辑:已解决

4

2 回答 2

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

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

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

于 2013-03-06T15:40:58.123 回答
-1

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

于 2013-03-06T15:37:56.303 回答