[15:40:10] How do i make global lock details private to certain group and is it even posible to do? [16:08:25] like the details in Special:Log ? [16:12:27] Yes @badwoldf [16:12:33] @badwolff [16:12:42] @bawolff: [16:13:32] lol [16:13:47] well third time's the charm as they say :) [16:14:23] cant always get things right [16:14:48] !wg LogRestrictions | Cocopuff2018 [16:14:48] Cocopuff2018: https://www.mediawiki.org/wiki/Manual:%24wgLogRestrictions [16:15:05] you should be able to change any log to be viewable by only a specific group [16:15:24] This would only affect logs, if other things display information, then it might still be viewable [17:57:34] Hi - sometime in the last two months, there was a change to Jenkins/Quibble validation that is now preventing changes to the Cargo extension from going through. (The last non-i18n change to Cargo was on October 11.) [17:58:22] I am getting all sorts of errors like this one: [17:58:31] 12:42:15 1) CargoQueryIntegrationTest::testSimpleQuery [17:58:31] 12:42:15 Wikimedia\Rdbms\DBQueryError: Error 1146: Table 'wikidb.unittest_Books' doesn't exist [17:59:25] Nothing in the test scripts changed - this used to work before. [18:00:10] Could it be that a DB table created in the setUp() function no longer persists for all the test functions? Or maybe setUp() is no longer being called at all? [18:00:31] Yaron: might be better in -releng [18:00:41] If it's a CI question rather than a mediawiki issue [18:01:14] Okay, thanks - I'll try there. [18:49:29] Yaron: I do know there was a recent change related to how extensions declare which tables need to be duplicated to unit tests [18:51:40] Oh... what do you mean by "duplicated"? [18:52:12] I don't actually know how it all works, but it is https://phabricator.wikimedia.org/T342301 and kind of sounds related [18:52:33] it was mentioned in the mediawiki ingsights email on wikitech-l [19:01:27] The timing does work out... this got merged in on November 21. [19:04:12] well i would like to make global lock information compeletly private if possible [19:14:25] $wgLogRestrictions["Global rights log"] = 'Steward'; [19:14:34] i put it like and its not working [19:37:31] Cocopuff2018: you need the internal name for the log, its probably something different. Look at whatever it is in the url. You also need the internal name for the group. Usually that's not capitalized (Although in theory it could be) [19:38:53] So if it was set up like wikipedia it would be $wgLogRestrictions["gblrights"] = "steward"; [19:40:04] question will it apply to the global group steward too? [19:40:30] ohh, wait [19:40:40] Its probably supposed to be a user right and not a group name [19:40:51] sorry, my bad [19:41:59] should the log restriction apply to the global group too? [19:53:16] The log restriction is made in terms of user-rights, and would be equally affected by global groups as local groups [19:53:35] but my line saying $wgLogRestrictions["gblrights"] = "steward"; was wrong. It has to use the name of a user-right, not a group name [19:54:12] is it possible to make it in terms of a global group? [19:55:23] no [19:55:32] but you can add new rights to the global group [19:56:23] thank you [19:56:26] https://testwiki.filmpedia.us/index.php/User:CocopuffBot [19:56:42] if you see here its unable to read the globalblock file and its name and files are all correctly added [19:57:32] GlobalBlocking configuration error [19:58:04] While mediawiki thinks that is not true [19:58:17] correct [20:03:31] its an ongoing issue [20:25:28] https://www.irccloud.com/pastebin/cy8M93s6/ [20:25:40] how do i fix this error? [20:31:43] i changed the permission of the file [20:35:08] i reinstalled the extension too [20:39:52] still says the same thing [21:04:53] Cocopuff2018: how did you change permissions of a file that does not exist? [21:14:47] the file indeed exist @Vulpix [21:20:43] Cocopuff2018: the error message literally says "No such file or directory" [21:22:19] Well it has all its file and can't find out what's missing [21:23:58] Vulpix: that can happen for access denied [21:24:27] Cocopuff2018: what's ls -lsa on that dir say [21:24:44] And what's user is mediawiki running as [21:31:59] I'd actually be surprised if that exact error was for access denied [21:32:08] You can usually still stat files you cannot read [21:32:15] Maybe if you didn't have access to the directory its in [21:32:35] bawolff: I think directory may cause it [21:34:29] if you can't access the directory because of permissions, you get access denied too [21:36:16] Vulpix: if you try a command on a file within? [21:37:40] yes. It's easy to try yourself. cat /root/whatever, even if "whatever" does not exist, you'll get permission denied [21:39:21] and checking if the file exists is as simple as doing a ls followed by the path it says "no such file or directory". Of course, copy&pasting the message, to prevent typo errors [21:41:46] Hmm [21:41:52] I'm too lazy to get laptop out [22:48:02] @RhinosF1: I'm only getting the error as above, and its running on the filmpedia user [22:51:32] Cocopuff2018: oh, i didn't read your link, you're complaining about a different error [22:52:29] Does the literal error have /path/to/extensions/ in it, or is that something you added? [22:53:00] Because if the former, that probably means you have a path wrong in LocalSettings.php where you didn't replace the placeholder [22:59:52] ill check @bawolff