Compare commits

..

1 commit

Author SHA1 Message Date
paul 002cb4b37c Enable production PHP settings 2021-09-25 09:28:46 +02:00

View file

@ -156,14 +156,14 @@ enableSemantics( getenv("SEMANTIC_URL") );
# Set Subpages on
$wgNamespacesWithSubpages[NS_MAIN] = 1;
ini_set('display_errors', '0');
ini_set('display_startup_errors', '0');
error_reporting(0);
# Enable long error messages
if (getenv("DEBUG")) {
$wgShowExceptionDetails = true;
$wgShowDBErrorBacktrace = true;
$wgShowSQLErrors = true;
ini_set("display_errors", 1);
error_reporting(E_ALL);
ini_set('display_errors', 1);
ini_set('display_startup_errors', '1');
}