From 762a9325ce8442dd8c44842705fc56254fa98c94 Mon Sep 17 00:00:00 2001 From: Friedhelm Betz Date: Tue, 8 Oct 2002 11:11:46 +0000 Subject: [PATCH] integrated warning from error-handling, forgot this one git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@98810 c90b9560-bf6c-de11-be94-00142212c4b1 --- appendices/migration4.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/appendices/migration4.xml b/appendices/migration4.xml index 8c9e4d2f54..857ace33d8 100644 --- a/appendices/migration4.xml +++ b/appendices/migration4.xml @@ -1,5 +1,5 @@ - + Migrating from PHP 3 to PHP 4 @@ -215,6 +215,16 @@ php_admin_flag [PHP directive name] [On|Off] error_reporting= E_ALL & ~ ( E_NOTICE | E_WARNING ). + + + When upgrading code or servers from PHP 3 to PHP 4 you should + check these settings and calls to + error_reporting or you might disable + reporting the new error types, especially E_COMPILE_ERROR. This + may lead to empty documents without any feedback of what happened + or where to look for the problem. + + Using the old values 7 and 15 for setting up error reporting is