如何通过htaccess显示PHP错误

时间:2013-10-21 21:32:35

标签: php .htaccess php-ini

好吧,我在一个我不允许触摸php.ini文件的地方工作,因为服务器提供了很多网站...但是,有人告诉我,我可以通过htaccess显示php错误,所以我可以调试我的代码,因为现在,我的PHP屏幕空白,它没有帮助..如何通过我的本地htaccess文件显示php错误,而无需访问php.ini?

3 个答案:

答案 0 :(得分:1)

您应该使用:

php_flag display_errors on

你的.htaccess文件中的

答案 1 :(得分:0)

您可以使用这些命令启用错误报告,并使用.htaccess文件设置错误级别。

php_flag display_errors on
php_value error_reporting <error level>

您还可以使用error_reporting()在某种php配置文件中定义错误报告。

error_reporting(E_ALL);

答案 2 :(得分:0)

  

php_flag display_startup_errors on   php_flag display_errors on   

上的php_flag html_errors      

启用PHP错误记录

     

php_flag log_errors on   php_value error_log / httpdocs / domain name / PHP_errors.log

使用htaccess,您可以为PHP错误指定最大大小。它控制每个记录的错误的大小,而不是整个文件大小。这是一般语法:

设置最大错误大小的一般指令

log_errors_max_len整数

参考链接:http://perishablepress.com/advanced-php-error-handling-via-htaccess/