[10:56:15] how can i get user edit counts between particular dates not total count [10:56:15] I can use select user_name,user_editcount from user order by user_editcount DESC; [10:56:16] for total but i need count between two dates [11:00:39] Ramu: Something like: select count(*) from revision inner join actor on rev_actor = actor_id where actor_name = "USERNAME_HERE" and rev_timestamp BETWEEN '20200101020304' AND '20210203040506'; [11:22:55] bawolff: like if we need all users count means ? [16:17:54] I am getting this error, : Title "Something.map" is not a valid map data page [16:27:28] I think, that's special config in https://noc.wikimedia.org/conf/highlight.php?file=CommonSettings.php [16:27:35] The block in wmgEnableJsonConfigDataMode [16:27:59] Which ends up with config like [16:27:59] $wgJsonConfigs['Map.JsonConfig']['remote'] = [ [16:28:00] 'url' => 'https://commons.wikimedia.org/w/api.php' [16:28:00] ]; [16:28:04] Documented at https://www.mediawiki.org/wiki/Extension:JsonConfig#Configuration [16:43:06] thanks again, I am trying all of these configurations [21:26:22] Hello all [21:27:13] So I'm setting up LDAPAuthentication2 on a fresh mediawiki install (1.35.2), authenticating against a local AD instance. The actual authentication is working great but the group mapping stuff doesn't seem to be activating at all; I feel like I'm missing something obvious [21:27:31] Relevant (sanitized) bits from LocalSettings.php: https://gist.github.com/apocalyptech/5c5aaab0b9911706a3cf750f6c9d294b [21:28:04] Running `php extensions/LDAPProvider/maintenance/ShowUserGroups.php -u username -d MYDOMAIN` yields the proper stuff in the lists, as I'd hope: https://gist.github.com/apocalyptech/581b83eae7b36c0bbc693c0a59f1f8dc [21:28:57] And I can see the group info pop up in the debug log file, when I have that stuff enabled as well. [21:29:27] My goal is just the initial `sysop` group population, but in that config I'm testing with a custom `My-Testing-Group` as well, and that doesn't sync either. [21:31:13] The various LDAP extensions show up properly in the Versions page: https://i.imgur.com/DrfCEhp.png [21:32:21] I've tried without the `presearchusernamemodifiers` config, since I haven't seen that everywhere, and I've also tried lowercasing the group names in the mapping section