-1

我这里有一个奇怪的问题。我正在尝试通过 php require() 函数为我的网站添加页脚,但它没有显示,而是显示了一个链接,将我重定向到http://cjtekkit.net/function.require

在http://cjtekkit.net/自己检查问题

奇怪的是,我对网站顶部的标题和按钮做了同样的事情,但底部不会配合。

有什么想法或解决方案吗?

4

2 回答 2

1

这很简单:

http://cjtekkit.net/main_look_bottom.html- 未找到

该文件main_look_bottom.html丢失,main_look_top.html存在-您可以设置标题。

于 2012-09-26T10:14:45.420 回答
1

这是 PHP 给您的错误消息的一部分,但由于您的页面样式,它不可见。如果您在浏览器中查看源代码,您将看到它:

<b>Warning</b>:  require(/home/woutegx92/domains/cjtekkit.net/public_html/main_look_bottom.html) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in <b>/home/woutegx92/domains/cjtekkit.net/public_html/index.php</b> on line <b>33</b><br />
<br />
<b>Fatal error</b>:  require() [<a href='function.require'>function.require</a>]: Failed opening required '/home/woutegx92/domains/cjtekkit.net/public_html/main_look_bottom.html' (include_path='.:/usr/local/lib/php') in <b>/home/woutegx92/domains/cjtekkit.net/public_html/index.php</b> on line <b>33</b><br />

这意味着您尝试包含的文件不存在。

于 2012-09-26T10:17:00.860 回答