diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-01-02 16:33:33 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-01-02 16:33:33 -0200 |
commit | 16b64c98a5932efdcfcb93afa6612951ec9f17b4 (patch) | |
tree | adc3880df1b09e3c58b721efd0fb6376b4ac4434 | |
parent | 46938b8dbc5be5e17657ad7eab51f737a89c7ec5 (diff) | |
download | puppet-php-16b64c98a5932efdcfcb93afa6612951ec9f17b4.tar.gz puppet-php-16b64c98a5932efdcfcb93afa6612951ec9f17b4.tar.bz2 |
Disable errors on wheezy while we figure out what to do with E_STRICT
-rw-r--r-- | files/apache2/php.Debian_wheezy.ini | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/files/apache2/php.Debian_wheezy.ini b/files/apache2/php.Debian_wheezy.ini index 17f0bc3..2d7cbbd 100644 --- a/files/apache2/php.Debian_wheezy.ini +++ b/files/apache2/php.Debian_wheezy.ini @@ -304,7 +304,8 @@ memory_limit = 128M ; Maximum amount of memory a script may consume (128MB) ; ; - Show all errors except for notices and coding standards warnings ; -error_reporting = E_ALL & ~E_NOTICE +;error_reporting = E_ALL & ~E_NOTICE +error_reporting = ; Print out errors (as a part of the output). For production web sites, ; you're strongly encouraged to turn this feature off, and use error logging |