On Wed, Nov 17, 2010 at 2:27 AM, Dmitriy Sintsov questpc@rambler.ru wrote:
require_once() should produce a warning on non-existent files. Warning reports should not be suppressed. For a development there should be
error_reporting = E_ALL | E_STRICT
in php.ini
Or failing that, put at the top of LocalSettings.php:
ini_set( 'display_errors', '1' ); error_reporting( E_ALL | E_STRICT );