Re: I need to know which wikis are ISO9001 compliant
The question of unauthorized edits is the first issue when dealing with wikis, and something I had to convince the auditor of.
Firstly, it's easy to restrict users to read-only as that's the default without logging in and creation of an account can be controlled. Logging in is password protected and is used to identify the contributor.
Wikipedia handles mischievous or misguided edits by continuous monitoring and locking potential trouble-spots. I've never locked one of our wiki articles but do habitually select "Recent changes" at least once a day to review updates. Once it's up and running the churn is very manageable.
To implement a "Controlled status" while allowing updates, I tag a reviewed article with a warning banner along the lines of:
I use the wiki's "permanent link" ability to identify the controlled version. This allows the last controlled version to be retrieved or compared with the current.
Before you can install MediaWiki you will need to install:
Useful links:
I agree that this sounds interesting. How do you keep unauthorized persons from editing? Permissions? I always thought that Wikis were pretty much open to everyone, but I am not very knowledgeable about them.
Firstly, it's easy to restrict users to read-only as that's the default without logging in and creation of an account can be controlled. Logging in is password protected and is used to identify the contributor.
Wikipedia handles mischievous or misguided edits by continuous monitoring and locking potential trouble-spots. I've never locked one of our wiki articles but do habitually select "Recent changes" at least once a day to review updates. Once it's up and running the churn is very manageable.
To implement a "Controlled status" while allowing updates, I tag a reviewed article with a warning banner along the lines of:
WARNING: This wiki page is controlled, you may be viewing a subsequent draft. Follow this link for the most recent controlled version.
This sounds interesting. Can someone describe some more about this or where I can go to find out more?
- IIS or Apache
- PHP with MySql support
- MySql
- Download Mediawiki from http://www.mediawiki.org/wiki/Download and Unzip it.
- Copy/Unzip the files to your web site root (c:\Inetpub\wwwRoot\wiki)
- Setup IIS/Apache to that the default document for this folder is index.php
- Go to http://localhost/wiki/index.php and follow the first time config directions.
- Move the generated wiki\config\LocalSettings.php file to its parent folder (wiki\LocalSettings.php).
Edit the LocalSetting.php as needed:
- $wgGroupPermissions['*']['createaccount'] = true;
- $wgGroupPermissions['*']['read'] = true;
- $wgGroupPermissions['*']['edit'] = false;
Useful links:
Last edited:
