Commons:Administrators' noticeboard/Blocks and protections
Shortcuts: COM:AN/B • COM:AN/P • COM:RFPP
|
This is a place where users can communicate with administrators, or administrators with one another. You can report vandalism, problematic users, or anything else that needs an administrator's intervention. Do not report child pornography or other potentially illegal content here; e-mail legal-reports | |||
|---|---|---|---|
| Vandalism [] |
User problems [] |
Blocks and protections [] |
Other [] |
|
Report users for clear cases of vandalism. Block requests for any other reason should be reported to the blocks and protections noticeboard.
|
Report disputes with users that require administrator assistance. Further steps are listed at resolve disputes.
|
Reports that do not suit the vandalism noticeboard may be reported here. Requests for page protection/unprotection could also be requested here.
|
Other reports that require administrator assistance which do not fit in any of the previous three noticeboards may be reported here. Requests for history merging or splitting should be filed at COM:HMS. |
| Archives | |||
125, 124, 123, 122, 121, 120, 119, 118, 117, 116, 115, 114, 113, 112, 111, 110, 109, 108, 107, 106, 105, 104, 103, 102, 101, 100, 99, 98, 97, 96, 95, 94, 93, 92, 91, 90, 89, 88, 87, 86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 73, 72, 71, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1 |
101, 100, 99, 98, 97, 96, 95, 94, 93, 92, 91, 90, 89, 88, 87, 86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 73, 72, 71, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1
| ||
Note
- For page protection requests, please state protection type, file name, and proposed protection time span. See also: Protection Policy.
- Before proposing a user be blocked, please familiarize yourself with the Commons' Blocking Policy.
- Remember to sign and date all comments using four tildes (
~~~~), which translates into a signature and a time stamp. - Notify the user(s) concerned via their user talk page(s).
{{subst:Discussion-notice|noticeboard=COM:AN/B|thread=|reason=}}is available for this. - Administrators: Please make a note if a report is dealt with, to avoid unnecessary responses by other admins.
Bahati11
[edit]User: Bahati11 (talk · contributions · Move log · block log · uploads · Abuse filter log)
Reason: Repeated copyvio. Received final warning in June, and has continued similar patterns. Haj (talk) 19:13, 23 September 2025 (UTC)
Done Blocked for 1 month. --Lymantria (talk) 20:30, 23 September 2025 (UTC)
RPP Template:Current
[edit]Request template-editor protection Template:Current 104k transclusions. Thanks! Waddie96 (talk) 22:11, 23 September 2025 (UTC)
Done. Taivo (talk) 13:48, 24 September 2025 (UTC)
File:Claudia_Cardinale_-_Studio_Portrait_(1964).png added to plwiki main page
[edit]Dear admins, I have just posted the image in question on plwiki home page, therefore we might need COM:UPLOAD-P. Let's protect it until end of October, 2025. Thank you in advance, « Saper // @talk » 22:45, 23 September 2025 (UTC)
Done may have already had cascading protection, but its state was a little confusing; I've now protected it in its own right, which should be harmless. - Jmabel ! talk 02:58, 24 September 2025 (UTC)
Module:Iteration replace "span" by "bdi" in function parlst
[edit]I'd like to change the generated code in Module:Iteration function parlst:
if catlink == '' then
local args = {
'<span title="U+',
'', -- [2] = format('%04X', code + i - 1)
'">',
'', -- [4] = char(code + i - 1)
'</span>',
}
for i = 1, count do
args[2] = format('%04X', code + i - 1)
args[4] = char(code + i - 1)
insert(results, concat(args))
end
elseif catlink == 'U' then
local args = {
'[[:Category:U+',
'', -- [2] = format('%04X', code + i - 1)
'|<span title="U+',
'', -- [4] = format('%04X', code + i - 1)
'">',
'', -- [6] = char(code + i - 1)
'</span>]]',
}
for i = 1, count do
args[2] = format('%04X', code + i - 1)
args[4] = args[2]
args[6] = char(code + i - 1)
insert(results, concat(args))
end
else
local args = {
'[[:Category:',
'', -- [2] = char(code + i - 1)
'|<span title="U+',
'', -- [4] = format('%04X', code + i - 1)
'">',
'', -- [6] = char(code + i - 1)
'</span>]]',
}
for i = 0, count - 1 do
args[2] = char(code + i - 1)
args[4] = format('%04X', code + i - 1)
args[6] = args[2]
insert(results, concat(args))
end
end
by
if catlink == '' then
local args = {
'<bdi title="U+',
'', -- [2] = format('%04X', cp)
'">',
'', -- [4] = char(cp)
'</bdi>',
}
for cp = code, code + count - 1 do
args[2] = format('%04X', cp)
args[4] = char(cp)
insert(results, concat(args))
end
elseif catlink == 'U' then
local args = {
'[[:Category:U+',
'', -- [2] = format('%04X', cp)
'|<bdi title="U+',
'', -- [4] = format('%04X', cp)
'">',
'', -- [6] = char(cp)
'</bdi>]]',
}
for cp = code, code + count - 1 do
args[2] = format('%04X', cp)
args[4] = args[2]
args[6] = char(cp)
insert(results, concat(args))
end
else
local args = {
'[[:Category:',
'', -- [2] = char(cp)
'|<bdi title="U+',
'', -- [4] = format('%04X', cp)
'">',
'', -- [6] = char(cp)
'</bdi>]]',
}
for cp = code, code + count - 1 do
args[2] = char(cp)
args[4] = format('%04X', cp)
args[6] = args[2]
insert(results, concat(args))
end
end
i.e. just replace the 6 occurences of "span" by "bdi". This would solve some page rendering problems when displaying random unicode characters in characters lists, notably when there are mixes of characters in different directions; aditionally it would improve the page size.
The additional change is using "cp" loop from "code" to "code + count -1", instead of looping on "i" from "0" to "count -1". It is a small Lua execution time optimization.
I created this part of the function myself, to significantly reduce the generated page sizes in large lists of characters (e.g. lists of characters in large Unicode CJK blocks, or in lists by Kangxi radical, which are not far from reaching some internal MediaWiki limit, and cause unnecessary delays when loading these pages, even if these lists are collapsed by default in categoriy description pages). There's still no error, but I had to limit the number of generated links for each character, to avoid having too many parsed nodes, by some arbitrary count of 100 links per subgroups, but it is still a bit too large, too near from the limit: before it was limited to 200 links per subgroup, now 100 links per subgroup; there are other possible optimizations for these very populated CJK category pages that I'm working on).
For now, just the simple modification above (6 replacements) should be sufficient, the second change for the loop variable only concerns Lua with minor optimization, and does not solve the MediaWiki parser limit; these are very simple changes. (it is also available in the sandbox version of the module).
I cannot edit the Module that has been restricted not just for confirmed editors (as indicated), but only for administrators (because it is heavily used; policy changed in August 2024 by user:CptViraj after another editor changed the module, but not the "parlst" function itself that I had already optimized for faster rendering without the template parameter). The change above does not affect many pages (the "parlst" function is used with the "catlink" parameter set on category pages for ~200 Unicode blocks and 214 Kangxi radicals, only when there's no template given in parameter of the invoked "parlst" function, and the long list is much simpler and much faster to generate in Lua).
The edited sandbox version of the module (which includes the changes above) was tested successfully in Category:Unicode 20000-2A6DF CJK Unified Ideographs Extension B (this category is about is the largest existing Unicode block; not all links can currently be generated in the collapsed list of characters; but all characters are still displayed, with a maximum of 100 links for each one the 214 Kangxi radicals; this category will take years to have all links populated, just like Category:Unicode 4E00-9FFF CJK Unified Ideographs which grows slowly but where cleanup of the subclassification is in progress along with related Wikidata items with free images for each CJK ideograph, including possibly many modern variants or historic ancient CJK characters which is managed in a subproject since many years). verdy_p (talk) 12:00, 25 September 2025 (UTC)
Rong Dina
[edit]Rong Dina (talk · contributions · Move log · block log · uploads · Abuse filter log) . Racist vandalism. Marbletan (talk) 13:05, 25 September 2025 (UTC)
Done VOA, NOT HERE. Edits rev'deleted. Yann (talk) 17:51, 25 September 2025 (UTC)
Please protect that page with "Allow only autoconfirmed users", because it gets vandalized and spammed a dozen times today by IPs and others. time span 3 months". Thanks in advance!! Best wishes, --Mateus2019 (talk) 15:18, 25 September 2025 (UTC)
Done for one month. Yann (talk) 17:47, 25 September 2025 (UTC)
José Erik (talk · contributions · Statistics · Recent activity · block log · User rights log · uploads · Global account information)
This user has an extensive history of uploading copyrighted images, and did so again today. They have numerous notifications on User talk:José Erik, and while I understand English is not their native language, some level of competence is required. — Jkudlick ⚓ (talk) 17:35, 25 September 2025 (UTC)
Done Blocked for 3 months. Yann (talk) 17:46, 25 September 2025 (UTC)
User:WatsappAlain02
[edit]- WatsappAlain02 (talk · contributions · Move log · block log · uploads · Abuse filter log)
suspicious sock of WatsappAlain01 (talk · contribs). Netora (talk) 15:22, 26 September 2025 (UTC)
Comment oldest contributions of WatsappAlain02 postdate newest contributions of WatsappAlain01. Neither account is blocked, so it is not block evasion. I don't see any problem here (other than a pattern of ad uploads on both accounts, but that has nothing to do with there being two accounts). If you think WatsappAlain02 (the only one recently active) should be warned, warn them; if you think they should be sanctioned, feel free to report them based on their own behavior (and even that of the prior account); but having two accounts on Commons is not in and of itself a problem. - Jmabel ! talk 17:31, 26 September 2025 (UTC)
I want to add an image of a character in the block “CJK Unified Ideographs Extension J”
[edit]Can someone unprotect Data:Unicode data/images/032.tab? PrinceAzuka134 (talk) 13:49, 27 September 2025 (UTC)
- @PrinceAzuka134 Can you provide a link to the image and the page you want to edit? I’m not sure which page you were referring to, but it must have been protected for good reasons, so it isn’t likely to be unprotected. Instead, you can add a {{Edit request}} at its talk page for any edits you want to add. Thanks. Tvpuppy (talk) 14:39, 27 September 2025 (UTC)
- @PrinceAzuka134 Thanks for the link. As the note at the talk page mentioned, you can request the edits you want to make at Category talk:Unicode Module Datasets. Please be detailed and include links to the images/pages you want to edit. Thanks. Tvpuppy (talk) 21:00, 27 September 2025 (UTC)
Cmiggs457
[edit]User: Cmiggs457 (talk · contributions · Move log · block log · uploads · Abuse filter log)
Reason for reporting: The talk page with snappish responses and deletion warnings and the upload history are a strong hint for that this user is NOTHERE to participate in building a media repository.
Grand-Duc (talk) 03:56, 28 September 2025 (UTC)
Done I note that they are globally locked Gbawden (talk) 12:57, 28 September 2025 (UTC)
TomSoj
[edit]User: TomSoj (talk · contributions · Move log · block log · uploads · Abuse filter log)
Reason for reporting: User uploaded over 20 copyvios, falsely claiming authorship of some of them and "releasing" them under free licenses, also inserting fake licensing information into files marked by him as authored by another person (including non-free files copied from sites clearly indicating payment is required to reuse them). Jeż0216 (talk) 12:25, 28 September 2025 (UTC)
Done. I warned Tom and will delete all his remaining uploads. Taivo (talk) 15:58, 28 September 2025 (UTC)
AnVuong1222004 (12)
[edit]Reuploading previously deleted files from Commons:Deletion requests/Files uploaded by AnVuong1222004 (11). Most likely sock of User:AnVuong1222004, as suggested by the name and the user behaviour. Thanks. Tvpuppy (talk) 00:13, 29 September 2025 (UTC)
- No Delete AnVuong1222004 (12) (talk) 00:16, 29 September 2025 (UTC)