Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果在 Joomla 上完成的网站给我一个白屏死机,我如何找出发生错误的代码部分?
我什至知道哪个模块失败,在什么情况下(它是一个幻灯片模块,当要显示的项目之一是视频类型时它失败),但我想检查它在代码中的哪个位置失败,在希望自己纠正这个问题(我不是最初的开发人员,我还不流利地使用 PHP)。
您需要在您的环境中启用错误报告。出于安全考虑,它默认被禁用。我认为最简单的方法是将以下代码行放在 joomla 安装的 index.php 文件的开头:
ini_set('display_errors','On'); error_reporting(E_ALL);
完成调试后,不要忘记删除或注释掉这两行。