由于php包括网站突然停止加载?

时间:2013-06-13 00:59:06

标签: include typeerror

我在我的网站上工作时突然间它不再加载了。经过调查我发现这不再有效:

<?php include 'core/init.php'; ?>

但是当我改变它时:

<?php include '/core/init.php'; ?>

那些包含在我的index.php的顶部,所以页面不会加载任何内容。它工作正常,虽然我的链接都不再起作用,它给了我内部500错误。

进一步调查我从safari控制台得到了这些错误:

[Error] Failed to load resource: the server responded with a status of 500 (Internal   Server Error) (localhost, line 0)
[Error] TypeError: 'undefined' is not a function (evaluating 'this.hide()')
close (content_start_0.js, line 1)

过去一个月我一直在使用以下网站工作:

<?php include 'core/init.php'; ?> 

直到不久前才出现问题。

有什么想法吗?

1 个答案:

答案 0 :(得分:3)

第二个错误是由Safari的Firebug Lite扩展引起的。

转到检查器,单击“资源”,然后展开“扩展脚本”。那里应该有一个名为content_start_0.js的文件。

如果您进入Safari首选项,单击“扩展”选项卡,然后取消选中“为Safari启用Firebug Lite”,则可以使错误消失。