• Welcome to NIWA Community Forums.
 

Guides for setting up a wiki

Started by Maxite, April 04, 2011, 07:17:50 AM

Previous topic - Next topic

Maxite

So I'm going to start working on setting up an independent wiki in the near future, and I was wondering what guides there are to getting everything set up.

Greenpickle

To what, actually installing it?  In that case, MW is distributed with a readme, of course.

Member#36

Axiomist made a road map/launch strategy guide on how to start a wiki, and get it ready for NIWA membership.  But, it's in the staff section of the forums.  (Supposingly, anyone who wanted to harm the NIWA could use this to their advantage... or something.)

Maxite

#3
I can manage to get it installed. I'm looking for guides on how to take the generic install and actually personalize it into a wiki, so I don't have a wiki named "Wiki." How to add extensions, how to change the name of the admin account to something other than "admin", how to set up interwiki tables, how to set up the logo image, etc...

If I could get a copy of Axiomist's guide, that might be helpful as well.

Member#36

If you want a copy, ask an admin on the forums via PM.  I don't have the necessary permission to show the public something in the staff forums

Maxite

Any other guides or tutorials (or advice) on how to set up a wiki?

Greenpickle

If no-one comes up with anything, you can find pretty much everything at MediaWiki's site; just search for what you want.  (A couple of the things you mentioned, though, are done in the install process, and extensions usually have installation guides on their pages.)

Maxite

The things I listed weren't done in my install process, so :/
Installer just autofilled them in with stuff I don't want.

Greenpickle

Aren't admin name and wiki name normally fields in the page you're asked to fill out?  They were the last time I installed a wiki, at any rate.

Moydow

#9
Quote from: Greenpickle on April 06, 2011, 09:20:42 AM
Aren't admin name and wiki name normally fields in the page you're asked to fill out?  They were the last time I installed a wiki, at any rate.
Yes, they are. Though the actual MediaWiki installer is a lot different from the "installer" that appears on most wiki farms. Logo, extensions, etc. aren't set at installation, though I think the logo might be one of the settings added to the installer for 1.17, for which it's being completely rewritten.
NIWA Coordinator

Greenpickle

All I said was a couple of the things you mentioned are done in the installation process.

Maxite

#11
Oh, I used the autoinstaller that my web host provides. :/

UPDATE: Having now manually installed the software, I now need help with the following items:
1) Changing the logo image
2) Making the URLs look nicer
3) What extensions should I add? What spam protections should I install? Where do I get said extensions?

Volatile Dweevil

Quote from: Maxite on April 06, 2011, 06:24:50 PM
Oh, I used the autoinstaller that my web host provides. :/

UPDATE: Having now manually installed the software, I now need help with the following items:
1) Changing the logo image
2) Making the URLs look nicer
3) What extensions should I add? What spam protections should I install? Where do I get said extensions?

3) You can find some useful extensions by going to the Special:Version page on a well-established wiki and seeing what extensions it has (Pikipedia's is here).


Maxite

#14
How does one set up usergroups, specifically patroller?

On a similar vein, how does on edit usergroup permissions? Currently regular members can do some features that I don't want them to be able to do.

Moydow

Use $wgGroupPermissions in LocalSettings.php, like this:

$wgGroupPermissions
['group']['right'] = true;

For example, these give patrollers the ability to patrol and rollback edits, and have their own edits automatically patrolled:

$wgGroupPermissions
['patrol']['patrol'] = true;
$wgGroupPermissions['patrol']['rollback'] = true;
$wgGroupPermissions['patrol']['autopatrol'] = true;
NIWA Coordinator

KidIcarus

Do you mean just technically or attracting an editor base as well?