[00:34:24] I'll have to create a devaloper account eventually but it seems like the only offical way to get access to the git repos is via ssh from gerrit.wikimedia.org. [00:34:29] Is that correct? [01:07:20] gerrit supports anonymous http too [01:13:40] Okay. [10:27:19] I'm having trouble getting search to work, it seems the elastic search indexes dose not exist. Then if I try to use maintenance scripts to create them "php run.php ../extensions/CirrusSearch/maintenance/UpdateSearchIndexConfig.php" It just says "The "CirrusSearch" extension must be installed for this script to run. Please enable it and then try [10:27:19] again.". But the CirrusSearch extension is installed and I can confirm it is there by going to Special:Version and it does indeed show up as an installed extension [10:33:14] Guest79: I'd check where you added "wfLoadExtension( 'CirrusSearch' );" and see whether it's run in the context of "php run.php" [10:47:22] dcausse: So I was able to at least make a temporary fix. I installed MediaWiki with Wikibase through the official docker containers. It seems to be using "foreach (glob("LocalSettings.d/*.php") as $filename) {     include $filename; }" to load CirrusSearch.php, that installs the extension. If I instead copy the contents of CirrusSearch.php [10:47:22] directly into LocalSettings.php, the maintenance scripts work. Not sure if this is a bug with the containers or something with my environment though