Page MenuHomeMiraheze
Feed Advanced Search

May 24 2023

Joritochip placed T8791: Create tags in ManageWiki/WikiDiscover up for grabs.

Unfortunately due to some external circumstances I do not have the time to finish this task at the moment, I will pick it up again when I have time if nobody else claims it in the meantime. The work in progress commits I made are linked in the original post if someone wants to continue working based on what I had done

May 24 2023, 03:02 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

May 19 2023

MacFan4000 removed a member for Notice: John.
May 19 2023, 19:56

Apr 1 2023

Joritochip updated the task description for T8791: Create tags in ManageWiki/WikiDiscover.
Apr 1 2023, 01:47 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Mar 31 2023

Joritochip moved T8791: Create tags in ManageWiki/WikiDiscover from Radar to In Progress on the Joritochip board.
Mar 31 2023, 06:39 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Joritochip added a project to T8791: Create tags in ManageWiki/WikiDiscover: Joritochip.
Mar 31 2023, 06:39 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Mar 29 2023

Joritochip updated the task description for T8791: Create tags in ManageWiki/WikiDiscover.
Mar 29 2023, 23:46 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Reception123 added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

I don't think it's particularly likely for the number of wikis to suddenly grow so in that case the same model could be adopted and we can worry about scalability when we get there.

Mar 29 2023, 20:38 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Joritochip added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

I took a look at how WikiDiscover implements the "number of wikis with setting" magic word, and it actually just fetches every wiki from the DB, parses its settings JSON, and checks if the setting has the desired value... we could take the same approach here instead of a separate table for consistency reasons, although I don't think doing it that way is particularly scalable if there was a significantly larger amount of wikis (since we only have ~6k it's not that big of a performance worry)

Mar 29 2023, 20:29 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Reception123 added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

In that case a separate table should be fine.

Mar 29 2023, 10:20 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Joritochip added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

Since there can only be one category per wiki, the query only needs to look for an exact match. If we were to store tags as strings in JSON format or as comma separated lists, we'd need the query to check for any occurrence of each tag being filtered for every wiki. That kind of query is slow in SQL.

Mar 29 2023, 08:30 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Reception123 added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

How come it would be that different than querying categories with the current system?

Mar 29 2023, 07:54 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Joritochip added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

In order to make querying tags efficient we'll likely need a new table on the mhglobal database cw_wikitags with wiki_dbname and tag_id columns... Although we could store the tags as JSON or CSV in cw_wikis, trying to query that would be slow

Mar 29 2023, 07:16 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Joritochip moved T8791: Create tags in ManageWiki/WikiDiscover from Backlog to Features on the ManageWiki board.
Mar 29 2023, 06:23 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Joritochip moved T8791: Create tags in ManageWiki/WikiDiscover from Backlog to Features on the CreateWiki board.
Mar 29 2023, 06:23 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Joritochip added projects to T8791: Create tags in ManageWiki/WikiDiscover: ManageWiki, CreateWiki.
Mar 29 2023, 06:23 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Joritochip updated the task description for T8791: Create tags in ManageWiki/WikiDiscover.
Mar 29 2023, 05:09 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Reception123 added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

I'm not aware of there being any particular adversity to JS use, since a task like T10408 also exists.

Mar 29 2023, 04:17 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Joritochip added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

I started to take a look at potential ways to implement this, and from a frontend UX standpoint the best result was using OOUI's MenuTagMultiselectWidget. The major downside to using this is that it requires JavaScript.

Mar 29 2023, 03:37 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Mar 28 2023

Void added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

Should people be able to specify tags during the wiki creation process? (Could be done as a part of T9153)

Mar 28 2023, 00:54 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Joritochip added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

Should people be able to specify tags during the wiki creation process? (Could be done as a part of T9153)

Mar 28 2023, 00:22 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Mar 27 2023

Joritochip claimed T8791: Create tags in ManageWiki/WikiDiscover.
Mar 27 2023, 19:21 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Reception123 added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

We thought about that but I think given the nature of tags there would probably be a lot compared to categories which are quite static. Though if it seems difficult to do we could probably start with config and see how frequent it really is in practice. That's also why that part is only Stage 3, as it would be the last thing to be done in either case.

Mar 27 2023, 07:05 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Joritochip added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

Regarding the addition of a user right for stewards to modify tags: how often do we anticipate tags actually needing to be modified? Is it necessary for a special page to modify them vs just putting them in a config parameter?

Mar 27 2023, 07:02 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Mar 18 2023

Unknown Object (User) closed T9195: Attempt to improve ManageWiki usability and discovery as Invalid.
Mar 18 2023, 03:29 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)
Unknown Object (User) placed T8791: Create tags in ManageWiki/WikiDiscover up for grabs.
Mar 18 2023, 03:26 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Feb 11 2023

Reception123 updated the task description for T8791: Create tags in ManageWiki/WikiDiscover.
Feb 11 2023, 16:43 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Jan 31 2023

OrangeStar added a comment to T9195: Attempt to improve ManageWiki usability and discovery.

I'm going to make a subtask for the "using heavy JavaScript to modify groups and namespaces" part, I have an idea on how to do that without adding any new APIs (at least the namespaces part).

Jan 31 2023, 10:47 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)
OrangeStar added a comment to T9195: Attempt to improve ManageWiki usability and discovery.

I'm going to make a subtask for the "using heavy JavaScript to modify groups and namespaces" part, I have an idea on how to do that without adding any new APIs (at least the namespaces part).

Jan 31 2023, 10:21 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)

Jan 23 2023

Unknown Object (User) closed T9446: Upgrade to MediaWiki 1.39.1 as Resolved.

Everything is now done for this.

Jan 23 2023, 05:06 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Unknown Object (User) updated the task description for T9446: Upgrade to MediaWiki 1.39.1.
Jan 23 2023, 05:05 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Unknown Object (User) closed T9875: Please Re-install Pivot Skin (now Wikimedia maintained), a subtask of T9446: Upgrade to MediaWiki 1.39.1, as Resolved.
Jan 23 2023, 04:13 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Unknown Object (User) updated the task description for T9446: Upgrade to MediaWiki 1.39.1.
Jan 23 2023, 00:27 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki

Jan 22 2023

CrystalClear reopened T9875: Please Re-install Pivot Skin (now Wikimedia maintained), a subtask of T9446: Upgrade to MediaWiki 1.39.1, as Open.
Jan 22 2023, 21:53 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Unknown Object (User) updated the task description for T9446: Upgrade to MediaWiki 1.39.1.
Jan 22 2023, 21:23 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Unknown Object (User) updated the task description for T9446: Upgrade to MediaWiki 1.39.1.
Jan 22 2023, 18:45 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Unknown Object (User) updated the task description for T9446: Upgrade to MediaWiki 1.39.1.
Jan 22 2023, 17:06 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Unknown Object (User) updated the task description for T9446: Upgrade to MediaWiki 1.39.1.
Jan 22 2023, 17:06 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Unknown Object (User) updated the task description for T9446: Upgrade to MediaWiki 1.39.1.
Jan 22 2023, 07:05 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Naleksuh reopened T9446: Upgrade to MediaWiki 1.39.1 as "Open".

Reopening per Universal_Omega

Jan 22 2023, 02:44 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
MacFan4000 closed T9446: Upgrade to MediaWiki 1.39.1 as Resolved.
Jan 22 2023, 02:40 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki

Jan 21 2023

Unknown Object (User) moved T9446: Upgrade to MediaWiki 1.39.1 from Unsorted to Goals on the Universal Omega board.
Jan 21 2023, 21:53 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Unknown Object (User) updated the task description for T9446: Upgrade to MediaWiki 1.39.1.
Jan 21 2023, 17:41 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Unknown Object (User) updated the task description for T9446: Upgrade to MediaWiki 1.39.1.
Jan 21 2023, 16:45 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki

Jan 20 2023

Unknown Object (User) added a comment to T9446: Upgrade to MediaWiki 1.39.1.

Backups are done.

Jan 20 2023, 22:39 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki

Jan 18 2023

Reception123 added a comment to T9446: Upgrade to MediaWiki 1.39.1.

To provide an update on backups, public wikibackups are currently underway. Private backups will be done after but take little time. I can say almost certainly that all this will be done by the 21st, given that there's still 3 days left.

Jan 18 2023, 19:27 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki

Jan 17 2023

MacFan4000 updated the task description for T9446: Upgrade to MediaWiki 1.39.1.
Jan 17 2023, 02:44 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Agent_Isai updated the task description for T9446: Upgrade to MediaWiki 1.39.1.
Jan 17 2023, 01:00 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Agent_Isai updated the task description for T9446: Upgrade to MediaWiki 1.39.1.
Jan 17 2023, 00:47 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki

Jan 16 2023

Agent_Isai moved T9446: Upgrade to MediaWiki 1.39.1 from Notification Pending to Notified on the Notice board.
Jan 16 2023, 05:20 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki
Agent_Isai added a project to T9446: Upgrade to MediaWiki 1.39.1: Notice.
Jan 16 2023, 05:20 · Notice, Universal Omega, MediaWiki (SRE), MediaWiki

Jan 10 2023

Reception123 updated the task description for T8791: Create tags in ManageWiki/WikiDiscover.
Jan 10 2023, 18:56 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Reception123 updated the task description for T8791: Create tags in ManageWiki/WikiDiscover.
Jan 10 2023, 18:55 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Jan 2 2023

Reception123 added a project to T8791: Create tags in ManageWiki/WikiDiscover: Goal-2023-Jan-Jun.
Jan 2 2023, 11:21 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Nov 9 2022

Reception123 reassigned T8791: Create tags in ManageWiki/WikiDiscover from Agent_Isai to Unknown Object (User).

The RfF has now been closed and we will therefore be proceeding by adding the option of having five pre-defined tags in addition to the current categories system.

Nov 9 2022, 20:06 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Nov 1 2022

Reception123 added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

While not wanting to pre-empt the discussion at https://meta.miraheze.org/wiki/Community_noticeboard#Request_for_Feedback:_Categories_and_the_tagging_system it seems quite clear that there is wide support so far from the community to both keep the current category system but also to add a new 'tag' system. While obviously work shouldn't start before the RfF is completed, after a discussion with @Universal_Omega I think it would be best to do this in three stages (originally I thought of two but @Agent_Isai suggested #3). The rationale is that between Stage 1 and 2 wikis can start getting used to the new system and tagging their wikis and Stage 2 wouldn't be very useful at the beginning of the process in any case.

Nov 1 2022, 12:11 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Reception123 renamed T8791: Create tags in ManageWiki/WikiDiscover from Create subcategories/tags in ManageWiki/WikiDiscover to Create tags in ManageWiki/WikiDiscover.
Nov 1 2022, 12:07 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Oct 29 2022

Herald added a project to T9340: Remove Skin:Pivot: Universal Omega.

This extension has been moved to Wikimedia Phabricator, is marked as maintained (now maintained by Wikimedia folks, as was kindly offered here once it was posted about), and is now marked compatible with 1.39+ on its extension page.

Oct 29 2022, 23:13 · Universal Omega, Notice, MediaWiki (SRE), MediaWiki

Oct 17 2022

Reception123 added a comment to T8791: Create tags in ManageWiki/WikiDiscover.

@Agent_Isai Status?

Oct 17 2022, 14:30 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Sep 26 2022

Reception123 assigned T8791: Create tags in ManageWiki/WikiDiscover to Agent_Isai.

Assigning to Agent for community consultation. I would recommend having two main options for implementation: either we keep one main category and then tags or we just have tags

Sep 26 2022, 17:49 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Sep 20 2022

Unknown Object (User) moved T9195: Attempt to improve ManageWiki usability and discovery from Unsorted to Long Term on the Universal Omega board.
Sep 20 2022, 23:15 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)
Herald added a project to T9195: Attempt to improve ManageWiki usability and discovery: Universal Omega.
Sep 20 2022, 23:13 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)

Sep 19 2022

Unknown Object (User) moved T8791: Create tags in ManageWiki/WikiDiscover from Unsorted to Long Term on the Universal Omega board.
Sep 19 2022, 07:31 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Unknown Object (User) moved T8791: Create tags in ManageWiki/WikiDiscover from Backlog to Features on the WikiDiscover board.
Sep 19 2022, 07:31 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice
Herald added a project to T8791: Create tags in ManageWiki/WikiDiscover: Universal Omega.
Sep 19 2022, 07:28 · Joritochip, CreateWiki, ManageWiki, Goal-2023-Jan-Jun, WikiDiscover, MediaWiki (SRE), Notice

Sep 11 2022

Herald added a project to T8979: Remove GettingStarted: Universal Omega.

Btw, https://phabricator.wikimedia.org/T295830 indicates that GrowthExperiments shows errors if Suggested edits feature is enabled without CirrusSearch installed, so I guess it should also be disabled.

Sep 11 2022, 11:37 · Universal Omega, MediaWiki, Notice, MediaWiki (SRE)

Aug 30 2022

John closed T9710: [Existing] Server Resource Request for db* as Resolved.
Aug 30 2022, 20:53 · Notice, Database, Infrastructure (SRE)

Aug 29 2022

Void added a comment to T9710: [Existing] Server Resource Request for db*.

I fixed the sitenotice, it was a simple fix, but php error messages aren't very helpful at identifying the cause.

Aug 29 2022, 22:03 · Notice, Database, Infrastructure (SRE)
MacFan4000 updated subscribers of T9710: [Existing] Server Resource Request for db*.

Sitenotice fixed and deployed thanks to @Void.

Aug 29 2022, 22:00 · Notice, Database, Infrastructure (SRE)
MacFan4000 added a comment to T9710: [Existing] Server Resource Request for db*.

We could also just revert the problematic change, but I would first want to give UO a chance.

Aug 29 2022, 19:52 · Notice, Database, Infrastructure (SRE)
Agent_Isai added a comment to T9710: [Existing] Server Resource Request for db*.

Discord, status page, and Twitter notification done. I see you tried to do a sitenotice but there was some change in the code used for sitenotices which caused a deploy failure so I'll see if @Universal_Omega has any idea on how to fix this though I'll note that he's currently away so if this cannot be resolved within a few hours, I'll deploy a CentralNotice instead.

Aug 29 2022, 19:35 · Notice, Database, Infrastructure (SRE)
John added a project to T9710: [Existing] Server Resource Request for db*: Notice.

@Agent_Isai Can this be announced for tomorrow 2000-2030 please?

Aug 29 2022, 19:22 · Notice, Database, Infrastructure (SRE)

Aug 13 2022

Unknown Object (User) added a comment to T9195: Attempt to improve ManageWiki usability and discovery.
In T9195#195130, @John wrote:

This feels like am infinitely defined task - where does the scope end? What's the end goal? I think this should be split up into tasks for each part so they can be tracked, fleshed out and opinions can be sought in a more defined manner.

Aug 13 2022, 19:41 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)
John added a comment to T9195: Attempt to improve ManageWiki usability and discovery.

This feels like am infinitely defined task - where does the scope end? What's the end goal? I think this should be split up into tasks for each part so they can be tracked, fleshed out and opinions can be sought in a more defined manner.

Aug 13 2022, 18:43 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)
Unknown Object (User) updated the task description for T9195: Attempt to improve ManageWiki usability and discovery.
Aug 13 2022, 16:02 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)

Aug 7 2022

Unknown Object (User) closed T9403: Cannot log in; get "No active login attempt is in progress for your session" error as Resolved.

I think I fixed this now. Please re-open if not.

Aug 7 2022, 20:56 · Configuration, Notice, MediaWiki (SRE)

Jul 30 2022

Max20091 reopened T9403: Cannot log in; get "No active login attempt is in progress for your session" error as "Open".

Sorry for necro this task but seems to happened on custom domain: https://houkai2.cyou/
Tested clearing cache and cookie, used Edge and Chrome.

Jul 30 2022, 15:55 · Configuration, Notice, MediaWiki (SRE)

Jul 24 2022

Unknown Object (User) merged T9489: Allow editing wiki settings without providing a reason into T9195: Attempt to improve ManageWiki usability and discovery.
Jul 24 2022, 23:08 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)
Unknown Object (User) updated the task description for T9195: Attempt to improve ManageWiki usability and discovery.
Jul 24 2022, 22:50 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)

Jul 16 2022

Unknown Object (User) updated the task description for T9195: Attempt to improve ManageWiki usability and discovery.
Jul 16 2022, 20:43 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)
Unknown Object (User) updated the task description for T9195: Attempt to improve ManageWiki usability and discovery.
Jul 16 2022, 20:41 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)
Unknown Object (User) updated the task description for T9195: Attempt to improve ManageWiki usability and discovery.
Jul 16 2022, 20:39 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)

Jun 25 2022

Unknown Object (User) closed T9403: Cannot log in; get "No active login attempt is in progress for your session" error as Resolved.

I think I deployed something that fixed this. It was never totally related to Firefox, and if you have issues, please try clearing browser cookies and see if that resolves the issue. I did test Firefox, with total cookie protection on, and was able to login properly. Therefore. closing as resolved.

Jun 25 2022, 21:29 · Configuration, Notice, MediaWiki (SRE)

Jun 21 2022

Reception123 lowered the priority of T9403: Cannot log in; get "No active login attempt is in progress for your session" error from High to Normal.

Moving to normal as users have been notified afaik and there's nothing much we can really do?

Jun 21 2022, 12:41 · Configuration, Notice, MediaWiki (SRE)

Jun 18 2022

Untropicalisland added a comment to T9403: Cannot log in; get "No active login attempt is in progress for your session" error.

Firefox 101.0.1 on Windows 11, thanks!

Jun 18 2022, 20:46 · Configuration, Notice, MediaWiki (SRE)
RhinosF1 added a comment to T9403: Cannot log in; get "No active login attempt is in progress for your session" error.

Thanks @Untropicalisland: can you confirm your Firefox and OS version either here or on the Firefox ticket linked?

Jun 18 2022, 20:30 · Configuration, Notice, MediaWiki (SRE)
Untropicalisland added a comment to T9403: Cannot log in; get "No active login attempt is in progress for your session" error.

@Reception123 @RhinosF1 thank you and sorry for missing those earlier messages. I disabled Total Cookie Protection on the miraheze domain and that resolved it.

Jun 18 2022, 20:02 · Configuration, Notice, MediaWiki (SRE)
Unknown Object (User) lowered the priority of T9403: Cannot log in; get "No active login attempt is in progress for your session" error from Unbreak Now! to High.
Jun 18 2022, 15:44 · Configuration, Notice, MediaWiki (SRE)

Jun 17 2022

RhinosF1 raised the priority of T9403: Cannot log in; get "No active login attempt is in progress for your session" error from High to Unbreak Now!.

Raised this at https://bugzilla.mozilla.org/show_bug.cgi?id=1774861 - please disable Total Cookie Protection if it's enabled.

Jun 17 2022, 20:10 · Configuration, Notice, MediaWiki (SRE)

Jun 16 2022

Unknown Object (User) updated the task description for T9195: Attempt to improve ManageWiki usability and discovery.
Jun 16 2022, 06:47 · Universal Omega, Notice, ManageWiki, MediaWiki (SRE)

Jun 15 2022

Unknown Object (User) added a comment to T9340: Remove Skin:Pivot.

I personally find "It is unmaintained" simply false given that after the initial ticket for it a patch was submitted within 3 days.
I hope once it is merged into the trunk again, this ticket will re-evaluated and we can keep our favorite theme for a while still.

Jun 15 2022, 19:10 · Universal Omega, Notice, MediaWiki (SRE), MediaWiki
Soukupmi added a comment to T9340: Remove Skin:Pivot.

I personally find "It is unmaintained" simply false given that after the initial ticket for it a patch was submitted within 3 days.
I hope once it is merged into the trunk again, this ticket will re-evaluated and we can keep our favorite theme for a while still.

Jun 15 2022, 14:39 · Universal Omega, Notice, MediaWiki (SRE), MediaWiki

Jun 14 2022

RhinosF1 added a comment to T9340: Remove Skin:Pivot.

It becomes hard when every extension needs forks deploying, that are all on branches that could be deleted at any point and if a change is made upstream and not pulled to the deployed branch. It's on us to notice and work out the right solution.

Jun 14 2022, 10:01 · Universal Omega, Notice, MediaWiki (SRE), MediaWiki
CrystalClear added a comment to T9340: Remove Skin:Pivot.

Sorry, I'm not a programmer, just a MH user. I saw there was a fork by a Wikimedia developer, with one file different (which has 4 lines changed in it. isLoggedIn looks to have been changed to isRegistered in each). I didn't realize it was a problem to swap out that file or use fork at the bottom of the link, so again, sorry.

Jun 14 2022, 09:59 · Universal Omega, Notice, MediaWiki (SRE), MediaWiki

Jun 13 2022

RhinosF1 added a comment to T9340: Remove Skin:Pivot.

The patch isn't even merged.

Jun 13 2022, 19:29 · Universal Omega, Notice, MediaWiki (SRE), MediaWiki
CrystalClear added a comment to T9340: Remove Skin:Pivot.

A patch has been submitted for this skin and confirmed as working (though not yet merged), can it please be retested for those wikis that use it?

Jun 13 2022, 19:12 · Universal Omega, Notice, MediaWiki (SRE), MediaWiki

Jun 12 2022

Unknown Object (User) closed T9343: Remove FancyBoxThumbs as Resolved.
Jun 12 2022, 22:41 · Notice, MediaWiki (SRE), MediaWiki
Unknown Object (User) closed T9168: Remove Skin:Foreground as Resolved.
Jun 12 2022, 22:40 · Notice, MediaWiki (SRE), MediaWiki
Unknown Object (User) closed T9340: Remove Skin:Pivot as Resolved.
Jun 12 2022, 22:40 · Universal Omega, Notice, MediaWiki (SRE), MediaWiki
Unknown Object (User) closed T8979: Remove GettingStarted as Resolved.
Jun 12 2022, 22:38 · Universal Omega, MediaWiki, Notice, MediaWiki (SRE)
Unknown Object (User) closed T8897: Remove MagicNumberedHeadings as Resolved.
Jun 12 2022, 22:37 · Notice, MediaWiki (SRE), MediaWiki