[15:41:30] Hello everyone, I have a question about namespaces. I created a custom namespace in LocalSettings.php, according to the instructions in the manual, but the namespace isn't showing up in the list of namespaces on the "Special:All Pages" page. What am I doing wrong? [15:44:03] Jaybeebr: try searching something on Special:AllPages and see if it appears there, just in case the special page was cached [15:46:27] Still not showing up [16:00:01] Maybe you're editing the wrong LocalSettings.php file (a backup copy, etc) [16:35:13] Vulpix: no, I'm positive that it's the correct file because other things I edit in it di have an effect [16:35:18] do* [16:53:43] Sounds like you're potentially making a typo or something then [17:02:02] Not that I can find. I have this: define("NS_PUBLIC", 3000); [17:02:02] define("NS_PUBLIC_TALK", 3001); [17:02:03] $wgExtraNameSpaces[NS_PUBLIC] = "Public"; [17:02:03] $wgExtraNameSpaces[NS_PUBLIC_TALK] = "Public_talk"; [17:02:04] $wgNamespacesToBeSearchedDefault[NS_PUBLIC] = true; [17:02:04] Am I doing something wrong here maybe? [17:04:03] variable names are case sensitive... [17:04:12] So you've got the wrong casing [17:06:12] That's it! [17:06:25] It should be "$wgExtraNamespaces" with a lowercase s, right? [17:06:43] yeah [17:07:16] Yoooo it works now! Thank you so much! [17:07:35] so now, if I create a page titled Public:Whatever, it should automatically go into the Public namespace? [17:07:44] Should do, yeah [17:08:24] Amazing [17:10:01] if you've created any already, you can use namespaceDupes.php to fix it [17:17:17] I created one earlier, but I then deleted it. Will that cause any trouble? [17:42:50] Jaybeebr: no, although you'll probably won't be able to undelete it if you'd like to restore the contents [17:43:34] that's fine [19:00:27] Can you mass upload a folder of images to a wiki? [19:06:12] Eytirth: yes, from the server side, if you use the maintenance/importImages.php script [19:32:13] Thank you Vulpix [21:21:56] Does checkuser still hold ips after 90 days have passed [21:45:41] Cocopuff2018, when edits are made, Extension:CheckUser will delete data older than the $wgCUDMaxAge using a job. If your wiki does not have a high enough edit rate to expunge data as expected, you may need to run the purgeOldData maintainance script on a schedule.