It looks like this is actually regarding any maintenance script I try to run. I just tried to run "runJobs.php" and I got the same error.
This is line 79 from doMaintenance.php and the surrounding code:
// Load settings, using wikimedia-mode if needed
// Fixme: replace this hack with general farm-friendly code
if( file_exists( "$IP/wmf-config/wikimedia-mode" ) ) {
# TODO FIXME! Wikimedia-specific stuff needs to go away to an ext
# Maybe a hook?
global $cluster;
$wgWikiFarm = true;
$cluster = 'pmtpa';
require_once( "$IP/includes/SiteConfiguration.php" );
require( "$IP/wmf-config/wgConf.php" );
$maintenance->loadWikimediaSettings();
require( $IP.'/wmf-config/CommonSettings.php' );
} else {
require_once( $maintenance->loadSettings() );
}
LINE 79 ------> if ( $maintenance->getDbType() === Maintenance::DB_ADMIN &&
is_readable( "$IP/AdminSettings.php" ) )
{
require( "$IP/AdminSettings.php" );
}
$maintenance->finalSetup();
// Some last includes
require_once( "$IP/includes/Setup.php" );
require_once( "$IP/maintenance/install-utils.inc" );
// Much much faster startup than creating a title object
$wgTitle = null;
// Do the work
try {
$maintenance->execute();
// Potentially debug globals
$maintenance->globals();
} catch( MWException $mwe ) {
echo( $mwe->getText() );
exit( 1 );
}
This post was posted by Gossamer~mediawikiwiki, but signed as Gossamer.