[15:15:32] Hello, how to make VisualEditor working when password protection with an .htaccess file is enabled_ [15:15:34] ? [18:59:01] hello, where can I ask about a problem setting up a mediawiki instance? i'm using the docker image and apache as a front-end, but the browser is stuck in a redirect loop [18:59:11] is this the right place ? [19:16:44] it's a reasonable place [19:57:06] okay so i'm running mediawiki in a docker container [19:57:17] so it exposes itself at / [19:57:39] i'd like to serve it on my main website, exposing it at something like https://myweb.com/w [19:57:57] i'm using apache httpd as a webserver [19:58:02] and reverseproxy configuration [19:58:26] ... proxypass this ... proxypassreverse that ... [19:58:39] i'm also setting $wgScript and stuff correctly [19:59:05] however when i visit https://myweb.com/w/Main_Page i get in a redirect loop [19:59:21] the redirect is coming from php thus from mediawiki [19:59:44] if I hit, instead, https://myweb.com/w/index.php/Main_Page it works [20:00:00] :( [20:00:13] I'd like to keep the short urls :( [20:03:09] the standard setup is to have /wiki/ as the short URL and /w/ as the script path (actual folder name) eg. https://example.com/wiki/Main_Page and then https://example.com/w/index.php?title=Main_Page&action=edit for uglier URLs like the editing mode in this example [20:05:21] ashley: i'd like /w/ more than /wiki , isn't that possible ? [20:08:06] presumably, but usually you'll want to have the short URL and the folder name different; if they're the same, some issue may (read: will) arise (at least when the page title matches one of the extensionless files in the wiki root dir, e.g. README, SECURITY, etc.) [20:11:17] uhm... [20:11:35] I see, i'll try with a custom docker images then, moving stuff around [21:38:43] Hi! [21:38:57] I'm trying to make MediaWiki to send an email on failed login attempt, but it isn't working (it doesn't email me). [21:39:14] https://dpaste.org/Q6q55 [21:39:22] Could someone let me know what I'm doing wrong? [21:54:35] Where are you loading the file you shared? [22:03:17] ^ [22:03:21] And you probably want to set a sort [22:03:51] You're also not globalising wgPasswordSender, so that's gonna be null [22:07:40] Marijn[m]: In LocalSettings.php [22:07:59] Reedy: I didn't understand that part "set a sort". Wdym? [22:08:56] https://www.mediawiki.org/wiki/Manual:$wgAuthManagerAutoConfig [22:09:04] >Beyond the usual ObjectFactory parameters, a special sort parameter is also recognized; this will determine the effective order of the providers (defaults to 0; smaller first; sorting is stable). [22:10:56] Sorting is fine, when I make this to log in file, works perfectly. [22:11:03] But sending to email no. [22:11:18] Client wants to get notification on email. [22:15:21] Reedy: Thanks for pointing me to global, everything works now.