我正在我的网站上工作,突然它不再加载了。经过调查,我发现这不再起作用:
<?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'; ?>
直到几分钟前才出现问题。
有任何想法吗?