[23:02:38] Hi, might be bit of an unusual setup, but I have nginx set to transform .example.wiki to wiki.example.com/wiki/ to allow for sneaky shortcuts to the articles. However browsers seem to automatically transform URLs to lowercase, so what happens is that media wiki tries to serve the article with the capitalized string, which fails, if the article has i.e. an all-caps title. Is there [23:02:40] a way to have MediaWiki be "less" case-sensitive and i.e. detect if an non-existing capitalized title matches a all-caps title? I looked into https://www.mediawiki.org/wiki/Manual:$wgCapitalLinks but it seems to be quite a dangerous change. [23:06:31] cranberry: there is no way to make mediawiki completely case-insensitive. $wgCapitalLinks does the opposite of what you want and makes it completely case-sensitive (by default the first character is case-insensitive and the rest is case-sensitive) [23:06:59] you can probably work around that with an extension, however [23:07:14] Hi Skizzerz, it doesn't have to be completely case-insensitive.. but i.e. detect if a non-existent capitalized title exists as a all-caps one? [23:07:28] nothing like that is built in [23:07:57] Ok, I see. Thank you for the input! [23:08:33] you'd need to write some extension that checks for that condition and redirects the user to the appropriate article name if it exists [23:08:51] or, more easily, just create the all-lowercase form and make that a redirect page [23:09:43] Hm I guess the latter is easier as it seems to only affect a couple pages with all-caps names [23:09:47] Will try that! Thanks for the idea! [23:09:50] can you do it with search? [23:10:36] https://en.wikipedia.org/?search=main_page&go= [23:10:52] hi legoktm, how do you mean? [23:11:42] I think /wiki/?search= might do want you want? [23:11:57] if matches a page title, it should redirect to it [23:12:24] you might need Extension:TitleKey installed too, I don't remember [23:12:25] Ohh!! [23:12:34] My friend! You are the genius of the day [23:13:01] I was already about to create some redirect pages.. but that search option.. it.. it just works :]] [23:13:16] Thank you so much [23:18:18] :D glad to help