[00:10:38] MW 1.34.2: Problems having thumbnail appear and render. Any help appreciated. Thanx [00:10:53] https://digitalmatrixgroup.com/index.php/Test1 [00:12:20] Hi foreclosurepedia. Well, it doesn't show at https://digitalmatrixgroup.com/index.php?title=File:Robert_Klein.jpeg , either. [00:12:49] https://digitalmatrixgroup.com/images/thumb/2/2b/Robert_Klein.jpeg/96px-Robert_Klein.jpeg 404s [00:12:54] https://digitalmatrixgroup.com/index.php/File:Robert_Klein.jpeg works fine [00:13:01] !404handler [00:13:06] !thumb [00:13:06] For information on configuring thumbnailing on MediaWiki, please refer to . [00:13:08] Suggestions? I have created the $ to tmp ... saw that [00:13:54] https://www.mediawiki.org/wiki/Manual:Thumb_handler.php/en [00:30:12] $wgLocalFileRepo['transformVia404'] = true; sets a 500 server error [00:30:37] the first part $wgGenerateThumbnailOnParse = false; was already set [00:30:39] thx [00:31:04] Do you have $wgLocalFileRepo defined in LocalSettings? [00:31:13] It's not a standard config thing, so I'd be slightly surprised [00:31:23] !500 [00:31:23] A blank page or HTTP 500 error usually indicates a fatal PHP error. For information on debugging (including viewing errors), see . [00:32:24] No, I do not. How do you recommend and as usual thanks for the help [00:32:52] Well, you don't need to set it then [00:32:57] as per the docs [00:32:58] >If you have $wgLocalFileRepo defined in LocalSettings.php, then you need to also set: [00:33:28] In full disclosure I have a bunch of templates from WP; however, I do not think they should impact MW [00:36:23] The example: https://digitalmatrixgroup.com/index.php/File:Robert_Klein.jpeg [00:43:19] I apologize for asking so many questions. And thanx for always helping people like me from time to time. [05:19:22] Hi, I have been trying to setup mediawiki locally [05:19:52] Backtrace: [05:19:52] #0 /var/www/html/includes/libs/rdbms/loadbalancer/LoadBalancer.php(932): Wikimedia\Rdbms\LoadBalancer->reportConnectionError() #1 /var/www/html/includes/libs/rdbms/loadbalancer/LoadBalancer.php(899): Wikimedia\Rdbms\LoadBalancer->getServerConnection(0, 'my_wiki', 0) #2 /var/www/html/includes/libs/rdbms/loadbalancer/LoadBalancer.php(1045): Wikimedia\Rdbms\LoadBalancer->getConnection(-1, Array, 'my_wiki', 0) #3 /var/www/html/includes/GlobalFunctions.php(2 [05:19:53] 0): Wikimedia\Rdbms\LoadBalancer->getMaintenanceConnectionRef(-1, 'api', 'my_wiki') #4 /var/www/html/includes/cache/MessageCache.php(493): wfGetDB(-1, 'api') #5 /var/www/html/includes/cache/MessageCache.php(448): MessageCache->loadFromDB('en', NULL) #6 /var/www/html/includes/cache/MessageCache.php(371): MessageCache->loadFromDBWithLock('en', Array, NULL) #7 /var/www/html/includes/cache/MessageCache.php(1091): MessageCache->load('en') #8 /var/www/html/in [05:19:53] udes/cache/MessageCache.php(1018): MessageCache->getMsgFromNamespace('Mainpage', 'en') #9 /var/www/html/includes/cache/MessageCache.php(988): MessageCache->getMessageForLang(Object(LanguageEn), 'mainpage', true, Array) #10 /var/www/html/includes/cache/MessageCache.php(930): MessageCache->getMessageFromFallbackChain(Object(LanguageEn), 'mainpage', true) #11 /var/www/html/includes/language/Message.php(1304): MessageCache->get('mainpage', true, Object(Lang [05:19:53] geEn)) #12 /var/www/html/includes/language/Message.php(862): Message->fetchMessage() #13 /var/www/html/includes/language/Message.php(954): Message->toString('text') #14 /var/www/html/includes/Title.php(660): Message->text() #15 /var/www/html/includes/MediaWiki.php(131): Title::newMainPage() #16 /var/www/html/includes/MediaWiki.php(151): MediaWiki->parseTitle() #17 /var/www/html/includes/MediaWiki.php(902): MediaWiki->getTitle() #18 /var/www/html/include [05:19:54] MediaWiki.php(543): MediaWiki->main() #19 /var/www/html/index.php(53): MediaWiki->run() #20 /var/www/html/index.php(46): wfIndexMain() #21 {main} [08:10:24] Hi, My question is, the recent contributors on my private wiki stays at zero on the registration page even though atleast 4 people are "writing texts". What are the settings for this value? [18:40:02] hi, I've been working on a mediawiki core patch to add a new parser function #transliterate that runs text through LanguageConverter. just wondering if anyone here can help with review or getting it merged https://gerrit.wikimedia.org/r/c/mediawiki/core/+/627938 [19:07:18] ningu: I think there are, it is another story though whether they are online [19:30:15] hello [19:31:40] hello forget the slug that shows the extensions and skins that a wiki has [19:32:01] usually just Special:Version ? [19:32:43] yes, Special:Version lists skins and extensions as well [19:33:15] thanks [20:10:55] what's the easiest way to apply a gerrit patchset to a git repo? apply to the working tree, not commit [20:14:23] aha, it looks like the website has commands for this [20:16:33] not quite what i want. maybe I'll just download the patch file [20:18:45] ningu: you can copy the "Download → Cherry Pick" command, but change 'git cherry-pick' to 'git cherry-pick -n' [20:19:17] (where -n stands for "don't commit") [20:23:10] hmm ok [20:23:32] what i want is to apply only the patch, not switch to the branch the patch was on (since it may be out of date) [20:23:36] so yeah I guess cherry pick would work [20:24:02] you can also use the "Format Patch" command and add `| git apply`, if you like patches [20:24:23] either one. it's not that I like patches, it's that i understand them, haha [20:24:58] but yeah pipe to git apply is easy enough [20:25:44] thanks, this will work one way or another