<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.sharkysoft.com/wiki-scripts/skins/common/feed.css?207"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.sharkysoft.com/wiki-scripts/index.php?title=Special:RecentChanges&amp;feed=atom</id>
		<title>Sharkysoft Wiki  - Recent changes [en]</title>
		<link rel="self" type="application/atom+xml" href="http://www.sharkysoft.com/wiki-scripts/index.php?title=Special:RecentChanges&amp;feed=atom"/>
		<link rel="alternate" type="text/html" href="http://www.sharkysoft.com/wiki/Special:RecentChanges"/>
		<updated>2012-05-17T05:55:32Z</updated>
		<subtitle>Track the most recent changes to the wiki in this feed.</subtitle>
		<generator>MediaWiki 1.15.5-3build1</generator>

	<entry>
		<id>http://www.sharkysoft.com/wiki-scripts/index.php?title=how_to_create_the_perfect_MediaWiki_wiki&amp;diff=420&amp;oldid=prev</id>
		<title>how to create the perfect MediaWiki wiki</title>
		<link rel="alternate" type="text/html" href="http://www.sharkysoft.com/wiki-scripts/index.php?title=how_to_create_the_perfect_MediaWiki_wiki&amp;diff=420&amp;oldid=prev"/>
				<updated>2012-05-16T22:32:48Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;step ?: Set the main page.:&amp;#32;&lt;/span&gt; &lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;''Note: This is a work in progress.''&lt;br /&gt;
&lt;br /&gt;
This guide will show you how to create and configure a feature-rich MediaWiki installation. When you are finished following these instructions, you will have a MediaWiki installation that differs from standard installations in the following ways:&lt;br /&gt;
&lt;br /&gt;
*Your wiki will run alongside other wikis running on the same virtual and physical host (i.e., this wiki will play nice with other wikis on the same host).&lt;br /&gt;
*Your wiki's URLs will be friendly.&lt;br /&gt;
&lt;br /&gt;
== prerequisites  ==&lt;br /&gt;
&lt;br /&gt;
Setting up Apache, PHP, virtual hosts, etc. is beyond the scope of this article.&amp;amp;nbsp; This article assumes the following: &lt;br /&gt;
&lt;br /&gt;
*Your virtual host has already been configured and is working properly. &lt;br /&gt;
*You have root access (via &amp;lt;tt&amp;gt;sudo&amp;lt;/tt&amp;gt;). &lt;br /&gt;
*You have already installed all of the software necessary to run MediaWiki.&amp;amp;nbsp; If not, at least install packages &amp;lt;tt&amp;gt;mediawiki&amp;lt;/tt&amp;gt; and &amp;lt;tt&amp;gt;imagemagick&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== step ?: Build the wiki folder.  ==&lt;br /&gt;
&lt;br /&gt;
Your first task is to set up your virtual host's wiki folder.&amp;amp;nbsp; This process requires you to create symlinks to some of MediaWiki's program files and to copy others.&amp;amp;nbsp; You will also need to set up some file permissions. Root privileges will be required. &lt;br /&gt;
&lt;br /&gt;
First determine the folder name of your new wiki project. If your site is only going to have a single wiki, then &amp;quot;wiki&amp;quot; (projectname) is probably a good choice. This will make the base URL of your new wiki look like this: &lt;br /&gt;
&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;http://&amp;lt;hostname&amp;gt;/wiki/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that while, in this example, &amp;quot;wiki&amp;quot; is the apparent folder name of the wiki (according to the URL), the actual folder name in your file system will be different. (This is necessary to enable clean URLs, which we'll address later.) After you have selected your wiki's folder name, create your new wiki's base folder at the desired location under your virtual host's document root, adding &amp;quot;-scripts&amp;quot; to the name. Then make it your working folder, as follows: &lt;br /&gt;
&lt;br /&gt;
 cd &amp;amp;lt;your site's document root&amp;amp;gt;&lt;br /&gt;
 mkdir wiki-scripts&lt;br /&gt;
 cd wiki-scripts&lt;br /&gt;
&lt;br /&gt;
Next, create symlinks to ''most'' of the MediaWiki files under &amp;lt;tt&amp;gt;/usr/share/mediawiki/&amp;lt;/tt&amp;gt;, as follows: &lt;br /&gt;
&lt;br /&gt;
 ln -s /usr/share/mediawiki/* .&lt;br /&gt;
 rm LocalSettings.php AdminSettings.php images config&lt;br /&gt;
&lt;br /&gt;
The files removed by the second command are removed for the following reasons:&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
*&amp;lt;tt&amp;gt;LocalSettings.php&amp;lt;/tt&amp;gt; is a per-wiki configuration file.&amp;amp;nbsp; You need a separate version of this file for each wiki instance.&amp;amp;nbsp; We'll create this file later. &lt;br /&gt;
*&amp;lt;tt&amp;gt;AdminSettings.php&amp;lt;/tt&amp;gt; is another configuration file. It was used by older MediaWiki installations but is now deprecated. Nuke it. &lt;br /&gt;
*&amp;lt;tt&amp;gt;images&amp;lt;/tt&amp;gt; is a per-wiki folder that will store your new wiki's media uploads. It should not be shared by other wikis, so we don't want to use the &amp;quot;common&amp;quot; one pointed to by the symlink.&amp;amp;nbsp; We'll create this folder later. &lt;br /&gt;
*&amp;lt;tt&amp;gt;config&amp;lt;/tt&amp;gt; contains the program necessary to initialize your new wiki.&amp;amp;nbsp; If you symlink to the master copy instead of making your own, isolated copy, your new wiki's config file will be saved inside the master copy's folder. Obviously, you don't want this.&lt;br /&gt;
&lt;br /&gt;
Make a local copy of the initialization program: &lt;br /&gt;
&lt;br /&gt;
 sudo cp -a /var/lib/mediawiki/config .&lt;br /&gt;
&lt;br /&gt;
You should now be ready to initialize your wiki. If all has gone well, a listing of your wiki's folder (generated with &amp;lt;tt&amp;gt;ls -al&amp;lt;/tt&amp;gt;) will resemble the following: &lt;br /&gt;
&lt;br /&gt;
 total 15&lt;br /&gt;
 drwxr-xr-x  4 sharky   sharky   4096 2010-09-04 22:40 .&lt;br /&gt;
 drwxr-xr-x 19 sharky   sharky   4096 2010-09-04 22:16 ..&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     28 2010-09-04 22:37 api.php -&amp;amp;gt; /usr/share/mediawiki/api.php&lt;br /&gt;
 drwx------  2 www-data www-data 4096 2010-09-04 16:12 config&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     31 2010-09-04 22:37 extensions -&amp;amp;gt; /usr/share/mediawiki/extensions&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     33 2010-09-04 22:37 img_auth.php -&amp;amp;gt; /usr/share/mediawiki/img_auth.php&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     29 2010-09-04 22:37 includes -&amp;amp;gt; /usr/share/mediawiki/includes&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     30 2010-09-04 22:37 index.php -&amp;amp;gt; /usr/share/mediawiki/index.php&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     38 2010-09-04 22:37 install-utils.inc -&amp;amp;gt; /usr/share/mediawiki/install-utils.inc&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     30 2010-09-04 22:37 languages -&amp;amp;gt; /usr/share/mediawiki/languages&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     32 2010-09-04 22:37 maintenance -&amp;amp;gt; /usr/share/mediawiki/maintenance&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     40 2010-09-04 22:37 opensearch_desc.php -&amp;amp;gt; /usr/share/mediawiki/opensearch_desc.php&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     36 2010-09-04 22:37 profileinfo.php -&amp;amp;gt; /usr/share/mediawiki/profileinfo.php&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     33 2010-09-04 22:37 redirect.php -&amp;amp;gt; /usr/share/mediawiki/redirect.php&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     35 2010-09-04 22:37 redirect.phtml -&amp;amp;gt; /usr/share/mediawiki/redirect.phtml&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     26 2010-09-04 22:37 skins -&amp;amp;gt; /usr/share/mediawiki/skins&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     38 2010-09-04 22:37 StartProfiler.php -&amp;amp;gt; /usr/share/mediawiki/StartProfiler.php&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     30 2010-09-04 22:37 thumb.php -&amp;amp;gt; /usr/share/mediawiki/thumb.php&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     34 2010-09-04 22:37 trackback.php -&amp;amp;gt; /usr/share/mediawiki/trackback.php&lt;br /&gt;
 lrwxrwxrwx  1 sharky   sharky     31 2010-09-04 22:37 wiki.phtml -&amp;amp;gt; /usr/share/mediawiki/wiki.phtml&lt;br /&gt;
&lt;br /&gt;
You are now ready to initialize your wiki.&lt;br /&gt;
&lt;br /&gt;
== step 2: Initialize the wiki.  ==&lt;br /&gt;
&lt;br /&gt;
Point your browser at the URL of new wiki folder you created: &lt;br /&gt;
&lt;br /&gt;
 http://sharkysoft.com/wiki/&lt;br /&gt;
&lt;br /&gt;
Since the wiki has not been initialized yet, you'll be greeted with the following screen: &lt;br /&gt;
&lt;br /&gt;
[[Image:MediaWiki before initialization.png|frame|center]] &lt;br /&gt;
&lt;br /&gt;
Select the link to move forward to the setup screen. This is the place where you define all of the parameters for your new wiki. Hopefully, the fields and their instructions are clear enough for you to follow. &lt;br /&gt;
&lt;br /&gt;
Here are some tips: &lt;br /&gt;
&lt;br /&gt;
*As you enter the name of your wiki, be aware that MediaWiki will automatically capitalize the first character of your wiki's name. &lt;br /&gt;
*Choose a database name that resembles the name of your wiki.&amp;amp;nbsp; &amp;lt;br&amp;gt; &lt;br /&gt;
*Create a separate wiki user for this wiki instance.&amp;amp;nbsp; The folder name you selected previously (or the wiki name) might make a good DB username.&amp;lt;br&amp;gt; &lt;br /&gt;
*When asked for the superuser account, for some reason, accounts that merely have sudo privileges are insufficient.&amp;amp;nbsp; Choose an actual root user.&lt;br /&gt;
&lt;br /&gt;
Answer all the necessary questions and press '''Install MediaWiki.''' If MediaWiki finds your answers to be inadequate, it will let you know and ask again. If MediaWiki installation is successful, you will see a message similar to the following, at the bottom of the results page: &lt;br /&gt;
&lt;br /&gt;
:&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;Installation successful!&amp;lt;/font&amp;gt; Move &amp;lt;tt&amp;gt;/var/lib/mediawiki/config/LocalSettings.php&amp;lt;/tt&amp;gt; to /etc/mediawiki, then follow &amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;this link&amp;lt;/font&amp;gt; to your wiki. &lt;br /&gt;
:You should change file permissions for &amp;lt;tt&amp;gt;LocalSettings.php&amp;lt;/tt&amp;gt; as required to prevent other users on the server reading passwords and altering configuration data.&lt;br /&gt;
&lt;br /&gt;
This message is partly a lie. The new config file for your wiki, &amp;lt;tt&amp;gt;LocalSettings.php&amp;lt;/tt&amp;gt;, is actually under the new config folder you created earlier. Move this file up one folder, into your new wiki's root folder, set appropriate access rights, and delete the now-useless config folder, as follows: &lt;br /&gt;
&lt;br /&gt;
 sudo mv config/LocalSettings.php .&lt;br /&gt;
 sudo chown sharky.www-data LocalSettings.php &lt;br /&gt;
 chmod 640 LocalSettings.php&lt;br /&gt;
 sudo rm -r config&lt;br /&gt;
&lt;br /&gt;
At this point, your wiki should be partly useable. Test it out by pointing your browser to the wiki. The main page should be displayed. Congratulations! Your wiki configuration is almost complete!&lt;br /&gt;
&lt;br /&gt;
== step ?: Isolate database credentials. ==&lt;br /&gt;
&lt;br /&gt;
 touch DatabaseSettings.php&lt;br /&gt;
 chmod 640 DatabaseSettings.php&lt;br /&gt;
 sudo chgrp www-data DatabaseSettings.php&lt;br /&gt;
&lt;br /&gt;
Copy stuff.&lt;br /&gt;
&lt;br /&gt;
Don't forget &amp;amp;lt;?php or you will expose your password.&lt;br /&gt;
&lt;br /&gt;
== step ?: Enable image uploading.  ==&lt;br /&gt;
&lt;br /&gt;
The designers of MediaWiki felt that images are more efficiently stored as ordinary files in the file system, rather than as BLOBs in the wiki's MySql database. Thus, to enable image uploading, you'll need to configure both the folder where the images are stored, and a URI for accessing them from that folder. &lt;br /&gt;
&lt;br /&gt;
First, let's create the folder where your new wiki's images will be stored. Using a console, from the wiki's base folder, enter the following commands: &lt;br /&gt;
&lt;br /&gt;
 mkdir images&lt;br /&gt;
 chmod 755 images&lt;br /&gt;
 sudo chown www-data.www-data images&lt;br /&gt;
&lt;br /&gt;
It is important to ensure the images permissions are configured correctly so that Apache can store new images uploaded through the wiki. Double-check your work by typing &amp;lt;tt&amp;gt;ls -l&amp;lt;/tt&amp;gt; and verifying that the entry for images has the following appearance. &lt;br /&gt;
&lt;br /&gt;
 drwxr-xr-x  2 www-data www-data 4096 2010-09-04 22:39 images&lt;br /&gt;
&lt;br /&gt;
Next, open your &amp;lt;tt&amp;gt;LocalSettings.php&amp;lt;/tt&amp;gt; file in your favorite text editor and append, to the bottom, the following lines: &lt;br /&gt;
&lt;br /&gt;
 $wgUploadDirectory = &amp;quot;images&amp;quot;;&lt;br /&gt;
 $wgUploadPath = &amp;quot;$wgScriptPath/images&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
The first variable, &amp;lt;tt&amp;gt;$wgUploadDirectory&amp;lt;/tt&amp;gt;, indicates, relative to the wiki software's base folder, the Apache-writable folder where MediaWiki will store uploaded media files (which are generally images). &lt;br /&gt;
&lt;br /&gt;
The second variable, &amp;lt;tt&amp;gt;$wgUploadPath&amp;lt;/tt&amp;gt;, indicates the URI path, relative to the wiki's domain, where the uploaded media files can be found. If you plan to secure your wiki's images from non-authenticated users (i.e., users), then set it instead as follows:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 $wgUploadPath = &amp;quot;$wgScriptPath/img_auth.php&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
Finally, to turn on image uploads, locate the &amp;lt;tt&amp;gt;$wgEnableUploads&amp;lt;/tt&amp;gt; variable -- it should already be defined in the file -- and set it to &amp;lt;tt&amp;gt;true&amp;lt;/tt&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
 $wgEnableUploads = true;&lt;br /&gt;
&lt;br /&gt;
You may also want to allow linking to external images. Various schools of thought exist as to whether you should do this, but if you want to, add the following line to &amp;lt;tt&amp;gt;LocalSettings.php&amp;lt;/tt&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
 $wgAllowExternalImages = true;&lt;br /&gt;
&lt;br /&gt;
And that's it! If everything went well, you should be ready to enjoy a rich, image-filled MediaWiki experience.&lt;br /&gt;
&lt;br /&gt;
== step ?: Configure aliasing in Apache. ==&lt;br /&gt;
&lt;br /&gt;
Finally, in order to make your wiki appear as if it is still installed in the &amp;quot;wiki&amp;quot; folder, we will command Apache to service any request for &amp;lt;tt&amp;gt;/wiki&amp;lt;/tt&amp;gt; as a request for &amp;lt;tt&amp;gt;/wiki-scripts/index.php&amp;lt;/tt&amp;gt;. Begin by opening the virtual host configuration file: &lt;br /&gt;
&lt;br /&gt;
 cd /etc/apache2/sites-available&lt;br /&gt;
 sudo nano (the virtual host file name)&lt;br /&gt;
&lt;br /&gt;
Add the following directive: &lt;br /&gt;
&lt;br /&gt;
 Alias /wiki &amp;amp;lt;your site's document root&amp;amp;gt;/wiki-scripts/index.php&lt;br /&gt;
&lt;br /&gt;
Please note a few things about this directive: &lt;br /&gt;
&lt;br /&gt;
*The first parameter is the URL where you want your visitors to believe the wiki is at. &lt;br /&gt;
*The second parameter is the local file system path to your wiki's main script. &lt;br /&gt;
*Modify either of these parameters as required for your particular installation.&lt;br /&gt;
&lt;br /&gt;
Save the configuration file, close your editor, and restart Apache: &lt;br /&gt;
&lt;br /&gt;
 sudo service apache2 restart&lt;br /&gt;
&lt;br /&gt;
== step ?: Update your wiki configuration file.  ==&lt;br /&gt;
&lt;br /&gt;
Since you moved your wiki installation, you'll need to update your wiki configuration file. Open the file in preparation for editing: &lt;br /&gt;
&lt;br /&gt;
 cd wiki-scripts&lt;br /&gt;
 nano LocalSettings.php&lt;br /&gt;
&lt;br /&gt;
Now find the following variables and set them to the values shown. If the variables don't exist, create them: &lt;br /&gt;
&lt;br /&gt;
 $wgArticlePath = &amp;quot;/wiki/$1&amp;quot;;&lt;br /&gt;
 $wgUsePathInfo = true;&lt;br /&gt;
&lt;br /&gt;
== step ?: Configure your wiki's logo. ==&lt;br /&gt;
&lt;br /&gt;
If you have replaced the default MediaWiki logo that appears in the upper-left corner of your wiki's pages, and the replacement image is in your wiki's installation folder, you may also need to update the logo location as well: &lt;br /&gt;
&lt;br /&gt;
 $wgLogo = &amp;quot;$wgScriptPath/logo.png&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== step ?: Disable forced capitalization. ==&lt;br /&gt;
&lt;br /&gt;
 # Do not require pages to begin with capital letters.&lt;br /&gt;
 $wgCapitalLinks = false;&lt;br /&gt;
&lt;br /&gt;
== step ?: Set the main page. ==&lt;br /&gt;
&lt;br /&gt;
http://localhost/wiki/MediaWiki:Mainpage&lt;br /&gt;
&lt;br /&gt;
Create&lt;br /&gt;
&lt;br /&gt;
{&amp;lt;nowiki/&amp;gt;{SITENAME}}&lt;br /&gt;
&lt;br /&gt;
Delete Main page&lt;br /&gt;
&lt;br /&gt;
== step ?: Fix the sidebar. ==&lt;br /&gt;
&lt;br /&gt;
MediaWiki:Sidebar / create&lt;br /&gt;
&lt;br /&gt;
== step ?: other configs ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Do not require pages to begin with capital letters.&lt;br /&gt;
$wgCapitalLinks = false;&lt;br /&gt;
&lt;br /&gt;
# Allow changing page title:&lt;br /&gt;
$wgAllowDisplayTitle = true;&lt;br /&gt;
$wgRestrictDisplayTitle = false;&lt;br /&gt;
&lt;br /&gt;
# Enable the NoTitle extension:&lt;br /&gt;
require_once(&amp;quot;$IP/extensions/NoTitle/NoTitle.php&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
# Enable a rich editor.&lt;br /&gt;
require_once(&amp;quot;$IP/extensions/FCKeditor/FCKeditor.php&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
# Restrict editing to authenticated users:&lt;br /&gt;
$wgGroupPermissions['*']['edit'] = false;&lt;br /&gt;
&lt;br /&gt;
$wgGroupPermissions['*']['read']    = false;&lt;br /&gt;
$wgGroupPermissions['*']['createaccount']    = false;&lt;br /&gt;
$wgGroupPermissions['user']['delete'] = true;&lt;br /&gt;
&lt;br /&gt;
$wgWhitelistRead = array&lt;br /&gt;
( &amp;quot;$wgSitename&amp;quot;, &lt;br /&gt;
  &amp;quot;Special:Userlogin&amp;quot;, &lt;br /&gt;
//  &amp;quot;Special:Search&amp;quot;, &lt;br /&gt;
  &amp;quot;$wgSitename:About&amp;quot;,&lt;br /&gt;
  &amp;quot;-&amp;quot;, &lt;br /&gt;
  &amp;quot;MediaWiki:Monobook.css&amp;quot; &lt;br /&gt;
);&lt;br /&gt;
&lt;br /&gt;
# Enable PDF uploads.&lt;br /&gt;
$wgFileExtensions[] = 'pdf';&lt;br /&gt;
require_once(&amp;quot;$IP/extensions/PdfHandler/PdfHandler.php&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
# Enable password reset extension.&lt;br /&gt;
$wgGroupPermissions['sysop']['passwordreset']   = true;&lt;br /&gt;
require_once( &amp;quot;$IP/extensions/PasswordReset/PasswordReset.php&amp;quot; );&lt;br /&gt;
&lt;br /&gt;
# Enable merging and deleting users.&lt;br /&gt;
require_once( &amp;quot;$IP/extensions/UserMerge/UserMerge.php&amp;quot; );&lt;br /&gt;
$wgGroupPermissions['bureaucrat']['usermerge'] = true;&lt;br /&gt;
&lt;br /&gt;
# Enable the Interwiki database editor:&lt;br /&gt;
require_once(&amp;quot;$IP/extensions/Interwiki/SpecialInterwiki.php&amp;quot;);&lt;br /&gt;
$wgGroupPermissions['sysop']['interwiki'] = true;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== step ?: Test your installation.  ==&lt;br /&gt;
&lt;br /&gt;
Now that your wiki is installed, it's time for that all-important step of testing. At the very least, be sure to test the following features: &lt;br /&gt;
&lt;br /&gt;
*page editing &lt;br /&gt;
*page creation &lt;br /&gt;
*user creation &lt;br /&gt;
*image uploading &lt;br /&gt;
*image viewing&lt;br /&gt;
&lt;br /&gt;
== other considerations  ==&lt;br /&gt;
&lt;br /&gt;
At this point, probably no one knows your wiki exists. Unless you want to fly under the radar, you will probably want to remedy this by creating links to your wiki from other pages on your web site, such as your site's root page. &lt;br /&gt;
&lt;br /&gt;
There are myriad extensions and configuration options you can play with to customize your wiki. Don't be afraid to experiment. My favorite is FCKEditor, which allows your wiki's editors to enjoy the comfort of a graphical &amp;quot;word processing&amp;quot; interface for editing pages. I've found that without this extension, it's very difficult to entice non-geeks to edit pages. &lt;br /&gt;
&lt;br /&gt;
You may also decide it's a good idea to lock down your wiki, so that only authorized users can create user accounts, and so that only valid users can edit content. This is left as an exercise for you to work out -- at least until I create the lock down tutorial.&amp;amp;nbsp;:-) Happy wiki-ing!&lt;/div&gt;</summary>
		<author><name>Sharky</name></author>	</entry>

	</feed>
