Topic on Project:Support desk

wikipedia-ish version, restricting new registration

3
77.176.81.87 (talkcontribs)

wiki version 1.16.2 php 6 mysql 5

hi,

how do i find a wikipedia-like version of a wiki? see this page for example: w:en:Egg_(food) how do i create a table of contents? how do i link references not directly to the reference site, but to the bottom of the page?

how can i restrict the registration of new users? how can i disable creating/editing of not registrated users?

thanks for your help! marc

Reach Out to the Truth (talkcontribs)
  • A table of contents is created automatically once there are a few headings, placed before the first heading. Or you can add __TOC__ in the spot where you want a table contents and it will be put there.
  • Footnote references are created with the Cite extension. Syntax is explained on that page.
  • To prevent account creation by unregistered users use:
    $wgGroupPermissions['*']['createaccount'] = false;
    
    Adminstrators will still be able to create accounts for users. ConfirmAccount might also be useful if you want people to be able to request accounts.
  • To disable page creation for unregistered users use:
    $wgGroupPermissions['*']['createpage'] = false;
    
  • To disable editing for unregistered users use:
    $wgGroupPermissions['*']['edit'] = false;
    
Reply to "wikipedia-ish version, restricting new registration"