| 26 | * Grant the requester sysop privileges. The requester will need special privileges in the wiki. |
| 27 | * Ask the requester to create an account by using the OpenID login. |
| 28 | * Once they have created the account, Login to peltier as root and: |
| 29 | {{{ |
| 30 | su mediawiki |
| 31 | mysql |
| 32 | # replace <prefix> with whatever table prefix you used above |
| 33 | SELECT user_id,user_nam FROM <prefix>_user; |
| 34 | # replace ID with whatever ID the user you want to give sysop privs has |
| 35 | INSERT INTO <prefix>_user_groups SET ug_user = ID, ug_group = 'sysop'; |
| 36 | }}} |