Change the name of the wiki

From Meta, a Wikimedia project coordination wiki
Jump to: navigation, search
Blue Glass Arrow.svg MediaWiki logo.png
This page should be moved to MediaWiki.org.
Please do not move the page by hand. It will be imported by a MediaWiki.org administrator with the full edit history. In the meantime, you may continue to edit the page as normal.

It is possible to change the name of your wiki post-installation using the steps below.

Basic name change [edit]

The basic name used for the wiki is determined by $wgSitename, defined in LocalSettings.php. Edit this to change the basic name, for instance:

#$wgSitename = 'MyWiki';
$wgSitename = 'YourWiki';

Project namespace [edit]

The project namespace can also be modified post-install. By default, this is the value of $wgSitename, although you could choose a shorter or different name. To do this, override the value of $wgMetaNamespace in LocalSettings.php, for instance:

$wgMetaNamespace = 'YourWiki';

Tagline [edit]

The tagline can be edited either in the language files, or through the MediaWiki namespace. Using the latter method, the edit MediaWiki:Tagline and amend the existing text as required.

Note: Editing the MediaWiki namespace will only have an effect if $wgUseDatabaseMessages is set to true. This is the default.