From 664db28a9f191cf3f5c055a225ec4572c679a21e Mon Sep 17 00:00:00 2001 From: Ryan Lerch Date: Mon, 13 Jun 2022 21:17:08 +1000 Subject: [PATCH] [wiki] comment out $wgActorTableSchemaMigrationStage Signed-off-by: Ryan Lerch --- roles/mediawiki/templates/LocalSettings.php.fp.j2 | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/roles/mediawiki/templates/LocalSettings.php.fp.j2 b/roles/mediawiki/templates/LocalSettings.php.fp.j2 index c6edba8a09..b3f0ed449b 100644 --- a/roles/mediawiki/templates/LocalSettings.php.fp.j2 +++ b/roles/mediawiki/templates/LocalSettings.php.fp.j2 @@ -9,6 +9,10 @@ #error_reporting(1); #session_start(); +# Uncomment these two lines to enable error reporting for debug +#error_reporting( -1 ); +#ini_set( 'display_errors', 1 ); + # Added for timeout testing require_once( "includes/DefaultSettings.php" ); #$wgDebugLogFile = '/tmp/out.log'; @@ -526,7 +530,12 @@ $wgGroupPermissions['Legal']['read'] = true; $wgGroupPermissions['Packaging']['read'] = true; wfLoadExtension( 'Lockdown' ); -$wgActorTableSchemaMigrationStage = MIGRATION_OLD; + +# MIGRATION_OLD was the default setting for this option anyway, +# so lets comment it out, and use whatever the default is going +# forward. +# https://www.mediawiki.org/wiki/Manual:$wgActorTableSchemaMigrationStage +# $wgActorTableSchemaMigrationStage = MIGRATION_OLD; $wgSpecialPageLockdown['Export'] = array('*');