From: SourceForge.net <no...@so...> - 2012-10-05 09:03:42
|
The following forum message was posted by xantis at http://sourceforge.net/projects/phppgadmin/forums/forum/115884/topic/5401353: PHP 5.4 have the PHP.INI strict standards ... By default, PHP 4.4.9 ... 5.3.x have only E_ALL & ~E_NOTICE Adding the ~E_STRICT & ~E_DEPRECATED after the E_ALL & ~E_NOTICE tells PHP to suppress warning if the PHP code does not use STRICT STANDARDS ... Code runs anyway, without strict standards ;-) add the following line of code (in the top, next line after the <?php to: conf/config.inc.php error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED); |