From c8686024e286d7ab6edffd612309237a95714068 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Fri, 6 Sep 2019 18:21:14 +0900 Subject: [PATCH] Add .htaccess to override global php settings This is for working on E_ALL fix for core libs before we can turn it on global --- .htaccess | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .htaccess diff --git a/.htaccess b/.htaccess new file mode 100644 index 00000000..d20d70ef --- /dev/null +++ b/.htaccess @@ -0,0 +1,17 @@ +php_flag display_startup_errors on +php_flag display_errors on +php_flag html_errors on +php_flag log_errors on +php_flag ignore_repeated_errors off +php_flag ignore_repeated_source off +php_flag report_memleaks on +php_flag track_errors on +php_value docref_root 0 +php_value docref_ext 0 +# Turn this on to redirect log to different folder +#php_value error_log /var/www/html/developers/clemens/php/php-error/php-errors.log +# this is E_ALL reporting ON +php_value error_reporting -1 +# this is E_ALL | ~E_NOTICE +#php_value error_reporting 2039 +php_value log_errors_max_len 0