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 3.0.3 升级到 Joomla 3.3。但是升级前端之后就不行了。我已经使用后端修复了数据库。我已将错误报告设置为开发模式,但它甚至没有显示任何错误。PHP 版本是 5.3.28 如何解决问题?
每当你在 php 中看到一个白页,就意味着一个致命的错误。请确保您的 php.ini 有 - - display_errors=On error_reporting=E_ALL
或者在 Joomla 的 index.php 文件中你可以放 - -
ini_set('display_errors', 'On'); ini_set('error_reporting', 'E_ALL');
让我知道它是否仍然不起作用。