是否可以通过LAMP强制报告错误?

时间:2013-06-17 15:11:43

标签: php error-handling lamp

我会保持简单并在需要时添加详细信息。

我有一些客户只是喜欢随处添加随机文件...即:在网站上有20个.htaccess文件。

我知道正确的方法是:清理网站并仅发布1个htaccess文件。

但是,我并不总是有时间。

是否可以在LAMP内设置默认“报告所有错误,忽略有关此事项的其他说明”。

我认为由于这是一个本地发展,因此没有明显的理由隐藏错误。

我在我的根文件夹中尝试了以下.htaccess文件(以及其他一些变体),但它运行得不好:

php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
php_value display_errors On
php_value error_reporting E_ALL

框架禁用它们。

其他文件会覆盖它们。

其他东西可能会也可能不会发生。 - 总有其他的东西-_-'。

First Edit ::为我工作。

档案位置:/etc/php5/apache2/php.ini

修改后的行:

display_errors = On
error_reporting = E_ALL
user_ini.filename = ".user.ini"

从终端:

service apache2 restart

1 个答案:

答案 0 :(得分:0)

由于有许多类似的重复,我将发布我使用的简单解决方案。

档案位置:/etc/php5/apache2/php.ini

修改后的行:

display_errors = On
error_reporting = E_ALL
user_ini.filename = ".user.ini"

从终端:

service apache2 restart