Book Image

MediaWiki 1.1 Beginner's Guide

By : Jeff Orlof, Mizanur Rahman
Book Image

MediaWiki 1.1 Beginner's Guide

By: Jeff Orlof, Mizanur Rahman

Overview of this book

<p>MediaWiki is the free, open-source wiki engine software that powers Wikipedia and many of the other popular wikis across the Web. Written in PHP, it possesses many features that make it the engine of choice for large collaborative wikis: flexible markup, comprehensive user management, multimedia handling, and more. Whether you are creating a public wiki for open contributions, a private wiki for collaborating within your work team or group of friends, or even a wiki for personal use, this book will provide you with all the essential steps you require to achieve this.<br /><br />This book covers how to administer users, back up and restore content safely, migrate your installation to another server or database, and even make hacks to the code. From the installation process to customizing the pages, you will learn what it takes to run a well designed, secure MediaWiki site.<br /><br />Throughout the course of this book, you will see the many different ways that MediaWiki can be used on the Web. This book covers the open source MediaWiki wiki engine from installation and getting started through structuring your collaborative web site, advanced formatting, images, and multimedia to migrating your installation and creating new MediWiki templates. While you will be introduced to the many uses of a wiki, you will also be taken through step-by-step exercises that will help you master the many administrative tasks associated with running and securing your wiki. You will learn how to prevent unauthorized edits being made to content, how to prevent spam, how to back up and restore your wiki, how to configure its look and functionality to suit your needs, and much more.</p>
Table of Contents (21 chapters)
MediaWiki 1.1
Credits
About the Authors
About the Reviewers
Preface

Time for action - creating a new namespace


Creating a new namespace is extremely easy and requires us to go into the LocalSettings.php file and enter a few lines. That's it! As we have edited this file many times, this should be an easy task for us by now.

  1. 1. Open the LocalSettings.php file for editing.

  2. 2. Scroll down to the last line of the file and type:

    #Custom namespaces
    $wgExtraNamespaces[100] = "namespace";
    $wgExtraNamespaces[101] = "namespace_talk";
    
  3. 3. Substitute namespace for the name of your new namespace. In the example wiki, I used Tutorials and Tutorials_talk for the custom namespaces.

  4. 4. Save the changes to your LocalSettings.php file.

Now, you can create a new page in your newly-created namespace using the URL method in the previous exercise.

What just happened?

As we wanted to organize some pages into a namespace called Tutorials, we needed to create a custom namespace. We did this by adding a few lines to the LocalSettings.php file, one to create the namespace itself, and another...