The Wiki for Tale 4 is in read-only mode and is available for archival and reference purposes only. Please visit the current Tale 11 Wiki in the meantime.

If you have any issues with this Wiki, please post in #wiki-editing on Discord or contact Brad in-game.

OpenIDrenames

From A Tale in the Desert
Jump to navigationJump to search

Especially for the people that used to login with a third party OpenID provider, list here your old name and the new name you're using now (which is linked to the atitd OpenID). Hopefully an admin can link these two together.

When the admin changes your situation you should just see the desired (old) name again.

I'm not sure how edits you made with the temp username will show up after the change though.

First name (to keep, linked to other provider) Temporary name (linked to atitd OpenID provider) Fixed?
Shebi (registered directly on MediaWiki) Shebi2 fixed
cory0210 (registered from Blogger openID) cobe0210 fixed

Fixing someone with an account using a different openid provider

To fix a user you have to disable the second openid and fix up the old one with the right url:

update wikiuser_openid set
 uoi_openid='http://atitd.org/openid-disabled/WANTED_BUT_USED_NAME' where
 uoi_openid='http://atitd.org/openid/WANTED_BUT_USED_NAME';

update wikiuser_openid set uoi_openid='http://atitd.org/openid/WANTED_BUT_USED_NAME'
 where uoi_openid='http://openid.aol.com/SECOND_NAME_USED_WITH_ATITD_PROVIDER';

Fixing someone with a mediawiki local account

They will generally have an openid user too. Locate the userids for both users with:

select user_id,user_name from wikiuser where user_name='Shebi';
select user_id,user_name from wikiuser where user_name='ShebiOpenID';

This will give two userid numbers ; verify which is the openid account with:

select * from wikiuser_openid where uoi_user='LOCALUSERIDNUMBER';
select * from wikiuser_openid where uoi_user='OPENIDUSERIDNUMBER';

Then fix the openid table to reference the local user id rather than the second-registered one:

update wikiuser_openid set uoi_user='LOCALUSERIDNUMBER' where uoi_openid='http://atitd.org/openid/Shebi';