Changes between Version 1 and Version 2 of faq/get-dedicated-wiki


Ignore:
Timestamp:
Jul 13, 2010, 5:35:17 PM (15 years ago)
Author:
Jamie McClelland
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • faq/get-dedicated-wiki

    v1 v2  
    2424chown mediawiki:nogroup /srv/www/wiki.mayfirst.org/mediawiki/images/PREFIX
    2525}}}
     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{{{
     30su mediawiki
     31mysql
     32# replace <prefix> with whatever table prefix you used above
     33SELECT user_id,user_nam FROM <prefix>_user;
     34# replace ID with whatever ID the user you want to give sysop privs has
     35INSERT INTO <prefix>_user_groups SET ug_user = ID, ug_group = 'sysop';
     36}}}