Diferencia entre revisiones de «Tutorial Resumen»

De Wiki de EUROPARC Espana
(Nueva página: {{FAQ header}} == Installation and configuration == === Where do I download MediaWiki? === The latest stable release of MediaWiki can be downloaded from [http://download.wikimedia.o...)
 
(propuesta de borrado)
 
(No se muestran 2 ediciones intermedias de 2 usuarios)
Línea 1: Línea 1:
{{FAQ header}}
+
{{Propuesta de borrado|1=Documentación copiada de MediaWiki, en inglés y probablemente innecesaria}}
  
 
== Installation and configuration ==
 
== Installation and configuration ==
 +
 
=== Where do I download MediaWiki? ===
 
=== Where do I download MediaWiki? ===
  
The latest stable release of MediaWiki can be downloaded from [http://download.wikimedia.org/mediawiki/ download.wikimedia.org] or [http://sourceforge.net/project/showfiles.php?group_id=34373 sourceforge.net]. Files are supplied in a [[:en:Tar (file format)|.tar]][[:en:gzip|.gz]] archive. MediaWiki can also be [[download from SVN|obtained direct from our Subversion]] repository. See also ''[[Download]]''
+
The latest stable release of MediaWiki can be downloaded from [http://download.wikimedia.org/mediawiki/ download.wikimedia.org] or [http://sourceforge.net/project/showfiles.php?group_id=34373 sourceforge.net]. Files are supplied in a [[En:Tar (file format)|.tar]][[En:gzip|.gz]] archive. MediaWiki can also be [[Download from SVN|obtained direct from our Subversion]] repository. See also ''[[Download]]''
  
 
=== How do I install MediaWiki? ===
 
=== How do I install MediaWiki? ===
Línea 14: Línea 15:
 
=== How do I install MediaWiki using a package? ===
 
=== How do I install MediaWiki using a package? ===
  
Many Linux distributions provide MediaWiki in a packaged format for that distribution. The MediaWiki development team refers you to your Linux distribution for assistance with installing, configuring or using them. The individual communities & companies who maintain such packages should provide installation instructions.
+
Many Linux distributions provide MediaWiki in a packaged format for that distribution. The MediaWiki development team refers you to your Linux distribution for assistance with installing, configuring or using them. The individual communities &amp; companies who maintain such packages should provide installation instructions. <!--{12061208756540} -->
<!-- add links here for the distributions? For example:
 
 
 
Debian:
 
apt-get install mediawiki
 
Redhat:
 
yum install mediawiki
 
-->
 
  
 
=== Can I install more than one wiki on a server using MediaWiki? ===
 
=== Can I install more than one wiki on a server using MediaWiki? ===
Línea 27: Línea 21:
 
It is possible to install more than one wiki on a server provided that:
 
It is possible to install more than one wiki on a server provided that:
  
*You use a different database for each wiki
+
* You use a different database for each wiki
 +
 
 
OR
 
OR
*You use a different database prefix for each wiki (for Postgres, you can achieve a similar effect by using different schemas and users)
+
 
 +
* You use a different database prefix for each wiki (for Postgres, you can achieve a similar effect by using different schemas and users)
  
 
For information on these options, see '''[[Manual:$wgDBname|$wgDBname]]''' and '''[[Manual:$wgDBprefix|$wgDBprefix]]''' respectively.
 
For information on these options, see '''[[Manual:$wgDBname|$wgDBname]]''' and '''[[Manual:$wgDBprefix|$wgDBprefix]]''' respectively.
Línea 38: Línea 34:
  
 
=== Does MediaWiki work with safe_mode enabled? ===
 
=== Does MediaWiki work with safe_mode enabled? ===
 +
 
Yes, but only to a limited degree. See [[Safe mode]].
 
Yes, but only to a limited degree. See [[Safe mode]].
  
 
=== Does MediaWiki require shell access? ===
 
=== Does MediaWiki require shell access? ===
 +
 
Shell access (SSH access) is not required for installing MediaWiki, but it is ''highly recommended''. Without shell access, it may even be difficult for you to get a backup of your wiki, or to upgrade to a new version. Some maintenance tasks will not be possible at all without shell access.
 
Shell access (SSH access) is not required for installing MediaWiki, but it is ''highly recommended''. Without shell access, it may even be difficult for you to get a backup of your wiki, or to upgrade to a new version. Some maintenance tasks will not be possible at all without shell access.
  
 
=== How do I install extensions? ===
 
=== How do I install extensions? ===
See [[Manual:Extensions]] for information about installing extensions, as well as writing them. See the [[Extension Matrix]] and the [[Category:Extensions]] to find existing extensions.
+
 
 +
See [[Manual:Extensions]] for information about installing extensions, as well as writing them. See the [[Extension Matrix]] and the to find existing extensions.
  
 
=== How do I add extra namespaces? ===
 
=== How do I add extra namespaces? ===
 +
 
To add a [[Manual:Namespace|namespace]], modify your '''[[Manual:LocalSettings.php|LocalSettings.php]]''' file, and add namespaces via '''[[Manual:$wgExtraNamespaces|$wgExtraNamespaces]]'''. You can add the following code to add a "Portal" namespace, and its corresponding discussion namespace:
 
To add a [[Manual:Namespace|namespace]], modify your '''[[Manual:LocalSettings.php|LocalSettings.php]]''' file, and add namespaces via '''[[Manual:$wgExtraNamespaces|$wgExtraNamespaces]]'''. You can add the following code to add a "Portal" namespace, and its corresponding discussion namespace:
  
:<tt>$wgExtraNamespaces = array(100 => "Portal", 101 => "Portal_talk");</tt>
+
:<tt>$wgExtraNamespaces = array(100 =&gt; "Portal", 101 =&gt; "Portal_talk");</tt>
  
 
{{note}} Be sure to add underscores instead of spaces, such as in <tt>Portal_talk</tt>. Otherwise, the namespace will not be declared properly!
 
{{note}} Be sure to add underscores instead of spaces, such as in <tt>Portal_talk</tt>. Otherwise, the namespace will not be declared properly!
Línea 58: Línea 58:
  
 
=== How do I enable embedded math formulas? ===
 
=== How do I enable embedded math formulas? ===
 +
 
MediaWiki allows embedded math formulas via a helper program called texvc that uses LaTeX to render the formulas. See [[Manual:Math]] for setup instructions.
 
MediaWiki allows embedded math formulas via a helper program called texvc that uses LaTeX to render the formulas. See [[Manual:Math]] for setup instructions.
  
 
=== How do I purge a cached page? ===
 
=== How do I purge a cached page? ===
  
To purge a cached page, such as when making changes to the navigation bar, add &action=purge to the end of the page's dynamic URL.
+
To purge a cached page, such as when making changes to the navigation bar, add &amp;action=purge to the end of the page's dynamic URL.
  
e.g. http://www.mediawiki.org/w/index.php?title=Main_Page&action=purge
+
e.g. http://www.mediawiki.org/w/index.php?title=Main_Page&amp;action=purge
  
Note that the URL '''must''' be using the active directory name (/w/ by default) rather than the static one (/wiki/ by default). Attempting to append the purge command to a static URL (e.g. http://www.mediawiki.org/wiki/Main_Page&action=purge) will instead take you to a page name containing the purge command at the end (in this case, "Main Page&action=purge").
+
Note that the URL '''must''' be using the active directory name (/w/ by default) rather than the static one (/wiki/ by default). Attempting to append the purge command to a static URL (e.g. http://www.mediawiki.org/wiki/Main_Page&amp;action=purge) will instead take you to a page name containing the purge command at the end (in this case, "Main Page&amp;action=purge").
  
See also: [[Manual:Purge]], [[Manual:Parameters_to_index.php]]
+
See also: [[Manual:Purge]], [[Manual:Parameters to index.php|Manual:Parameters_to_index.php]]
  
 
=== How do I allow uploading of additional formats? ===
 
=== How do I allow uploading of additional formats? ===
Línea 74: Línea 75:
 
MediaWiki requires that allowed file upload formats are specified using the '''[[Manual:$wgFileExtensions|$wgFileExtensions]]''' configuration directive. Usually this directive is situated in LocalSettings.php in the root of your MediaWiki installation.
 
MediaWiki requires that allowed file upload formats are specified using the '''[[Manual:$wgFileExtensions|$wgFileExtensions]]''' configuration directive. Usually this directive is situated in LocalSettings.php in the root of your MediaWiki installation.
  
For example, to allow uploading of PDF files, add the following to LocalSettings.php:
+
For example, to allow uploading of PDF files, add the following to LocalSettings.php: &lt;source lang="php"&gt; $wgFileExtensions[] = 'pdf'; &lt;/source&gt;
<source lang="php">
 
$wgFileExtensions[] = 'pdf';
 
</source>
 
  
{{note}} The syntax is different to allow uploading of more than one type of file.
+
{{note}} The syntax is different to allow uploading of more than one type of file. To do so, use an array as in the example below which will allow uploading of png, gif, jpg, jpeg, pdf, and txt files. &lt;source lang="php"&gt; $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg', 'pdf', 'txt' ); &lt;/source&gt;
To do so, use an array as in the example below which will allow uploading of png, gif, jpg, jpeg, pdf, and txt files.
 
<source lang="php">
 
$wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg', 'pdf', 'txt' );
 
</source>
 
  
 
See '''[[Manual:Configuring file uploads]]''' for more information.
 
See '''[[Manual:Configuring file uploads]]''' for more information.
Línea 95: Línea 89:
 
'''Possible solutions:'''
 
'''Possible solutions:'''
  
* Set the value of '''[[Manual:$wgMimeDetectorCommand|$wgMimeDetectorCommand]]''', e.g. under Unix or Linux, this would be
+
* Set the value of '''[[Manual:$wgMimeDetectorCommand|$wgMimeDetectorCommand]]''', e.g. under Unix or Linux, this would be  
*: <tt>$wgMimeDetectorCommand = "file --brief --mime";</tt>
+
:<tt>$wgMimeDetectorCommand = "file --brief --mime";</tt>
 +
 
 
* Compile/install the '''[http://pecl.php.net/package/fileinfo fileinfo]''' PHP extension  
 
* Compile/install the '''[http://pecl.php.net/package/fileinfo fileinfo]''' PHP extension  
 
** Fedora - yum install php-pecl-Fileinfo
 
** Fedora - yum install php-pecl-Fileinfo
Línea 115: Línea 110:
 
==== Alter the database ====
 
==== Alter the database ====
  
* Register a new account using the regular method ([[Special:Userlogin]]).
+
* Register a new account using the regular method ([[Especial:Userlogin|Special:Userlogin]]).
* Check the user ID in [[Special:Preferences]].
+
* Check the user ID in [[Especial:Preferences|Special:Preferences]].
* Execute the following SQL statement against the database:
+
* Execute the following SQL statement against the database:  
** For MediaWiki 1.5 and later:<br/> <code>INSERT INTO user_groups ( ug_user, ug_group ) VALUES ( ''<id>'', 'bureaucrat' ), ( ''<id>'', 'sysop' );</code>
+
** For MediaWiki 1.5 and later:<br> <code>INSERT INTO user_groups ( ug_user, ug_group ) VALUES ( ''&lt;id&gt;'', 'bureaucrat' ), ( ''&lt;id&gt;'', 'sysop' );</code>
** For MediaWiki 1.4:<br/> <code>UPDATE user_rights SET ur_rights = 'sysop,bureaucrat' WHERE ur_user = <id>;</code>
+
** For MediaWiki 1.4:<br> <code>UPDATE user_rights SET ur_rights = 'sysop,bureaucrat' WHERE ur_user = &lt;id&gt;;</code>
** For MediaWiki 1.3 and older:<br/> <code>UPDATE user SET user_rights = 'sysop,bureaucrat' WHERE user_id = <id>;</code>
+
** For MediaWiki 1.3 and older:<br> <code>UPDATE user SET user_rights = 'sysop,bureaucrat' WHERE user_id = &lt;id&gt;;</code>
<code>''<id>''</code> above should be replaced with the appropriate user ID which you can see on the user's preference page
+
 
 +
<code>''&lt;id&gt;''</code> above should be replaced with the appropriate user ID which you can see on the user's preference page
  
 
=== How do I reset a password? ===
 
=== How do I reset a password? ===
  
You can use the <tt>maintenance/changePassword.php</tt> [[Manual:Maintenance_scripts|maintenance script]] to reset a user's password.
+
You can use the <tt>maintenance/changePassword.php</tt> [[Manual:Maintenance scripts|maintenance script]] to reset a user's password.
  
'''You have to run the script from the command line.''' In other words, log into the server where your wiki is installed, then open a command prompt. Go to the installation directory, then go to the maintenance subdirectory. Run the following command:
+
'''You have to run the script from the command line.''' In other words, log into the server where your wiki is installed, then open a command prompt. Go to the installation directory, then go to the maintenance subdirectory. Run the following command:
  
 
  php changePassword.php --user=someuser --password=somepass
 
  php changePassword.php --user=someuser --password=somepass
Línea 135: Línea 131:
 
You can also use the old way, by modifying the database directly. Assuming that <var>$wgPasswordSalt</var> is set to true (the default), you can use the following SQL query for '''MySQL''':
 
You can also use the old way, by modifying the database directly. Assuming that <var>$wgPasswordSalt</var> is set to true (the default), you can use the following SQL query for '''MySQL''':
  
<source lang="sql">
+
&lt;source lang="sql"&gt;
 +
 
 
  UPDATE user SET user_password = MD5(CONCAT(user_id, '-',  
 
  UPDATE user SET user_password = MD5(CONCAT(user_id, '-',  
  MD5('somepass'))) WHERE user_name = 'someuser';
+
  MD5('somepass'))) WHERE user_name = 'someuser';
</source>
+
 
Where obviously "somepass" is changed to the password you want to set and "someuser" is changed to the user name as it is listed in the table "user".
+
&lt;/source&gt; Where obviously "somepass" is changed to the password you want to set and "someuser" is changed to the user name as it is listed in the table "user".
  
 
{{note}} The <tt>user_id</tt> in the CONCAT string is a column name and is not meant to be replaced with 'someuser'
 
{{note}} The <tt>user_id</tt> in the CONCAT string is a column name and is not meant to be replaced with 'someuser'
  
{{note}} If you obtain a 'dbname.user table does not exist' error, please check the [[Manual:LocalSettings.php|LocalSettings.php]] file, and double-check the value for the [[Manual:$wgDBprefix|$wgDBprefix]] variable. If that variable is not empty, try repeating the command, replacing <tt>$wgDBPrefix_user</tt> instead of <tt>user</tt> in the <tt>UPDATE</tt> clause of the SQL statement.
+
{{note}} If you obtain a 'dbname.user table does not exist' error, please check the [[Manual:LocalSettings.php|LocalSettings.php]] file, and double-check the value for the [[Manual:$wgDBprefix|$wgDBprefix]] variable. If that variable is not empty, try repeating the command, replacing <tt>$wgDBPrefix_user</tt> instead of <tt>user</tt> in the <tt>UPDATE</tt> clause of the SQL statement.
 +
 
 +
If using '''PostGreSQL''', use this query instead: &lt;source lang="sql"&gt;
  
If using '''PostGreSQL''', use this query instead:
+
UPDATE mwuser SET user_password =
<source lang="sql">
+
  md5(user_id || '-' || md5('somepass')) WHERE user_name='someuser';
  UPDATE mwuser SET user_password =
+
 
    md5(user_id || '-' || md5('somepass')) WHERE user_name='someuser';
+
&lt;/source&gt;
</source>
 
  
 
Yout can also try the '''[[Extension:Password Reset]]'''
 
Yout can also try the '''[[Extension:Password Reset]]'''
Línea 155: Línea 153:
 
=== How can I create Interwiki Links in my Wiki? ===
 
=== How can I create Interwiki Links in my Wiki? ===
  
====DB Expert Answer====
+
==== DB Expert Answer ====
If the external wiki is Wikipedia, and you wish to use the prefix "wp" to link to it, run this SQL statement to modify the [[Interwiki table]] in your database:
 
<source lang="sql">INSERT INTO interwiki (iw_prefix, iw_url, iw_local, iw_trans) VALUES ('wp', 'http://en.wikipedia.org/wiki/$1', '0', '0');</source>
 
The $1 indicates the article name on the external wiki.
 
  
===='''Typical-User Answer'''====
+
If the external wiki is Wikipedia, and you wish to use the prefix "wp" to link to it, run this SQL statement to modify the [[Interwiki table]] in your database: &lt;source lang="sql"&gt;INSERT INTO interwiki (iw_prefix, iw_url, iw_local, iw_trans) VALUES ('wp', 'http://en.wikipedia.org/wiki/$1', '0', '0');&lt;/source&gt; The $1 indicates the article name on the external wiki.
In a graphical SQL program (i.e. PhpMyAdmin), go to the [[interwiki table]]. Choose the option to insert (a row). In the [[Interwiki table#iw_prefix|iw_prefix]] field, enter your desired interwiki prefix. In the [[Interwiki table#iw_url|iw_url]] field, enter the Base URL of the '''''external''''' wiki plus the text "$1" as mentioned in the DB Expert Answer above. [[Interwiki table#iw_local|iw_local]] and [[Interwiki table#iw_trans|iw_trans]] have default values of zero (0). You may leave them as zero.
 
  
For '''''more''''' '''information''', see [[Help:Interwiki linking]]
+
==== '''Typical-User Answer''' ====
 +
 
 +
In a graphical SQL program (i.e. PhpMyAdmin), go to the [[Interwiki table|interwiki table]]. Choose the option to insert (a row). In the [[Interwiki table#iw prefix|iw_prefix]] field, enter your desired interwiki prefix. In the [[Interwiki table#iw url|iw_url]] field, enter the Base URL of the '''''external''''' wiki plus the text "$1" as mentioned in the DB Expert Answer above. [[Interwiki table#iw local|iw_local]] and [[Interwiki table#iw trans|iw_trans]] have default values of zero (0). You may leave them as zero.
 +
 
 +
For '''''more''''' '''information''', see [[Ayuda:Interwiki linking|Help:Interwiki linking]]
 +
 
 +
==== '''Easy Answer''' ====
  
===='''Easy Answer'''====
 
 
Install the [[Extension:Special page to work with the interwiki table|Special:Interwiki]] extension. You can then add and remove interwiki entries through the Special:Interwiki special page.
 
Install the [[Extension:Special page to work with the interwiki table|Special:Interwiki]] extension. You can then add and remove interwiki entries through the Special:Interwiki special page.
  
===How do I make my base URLs shorter? (i.e. /wiki/Article_Name as opposed to /w/index.php?title=Article_Name) ===
+
=== How do I make my base URLs shorter? (i.e. /wiki/Article_Name as opposed to /w/index.php?title=Article_Name) ===
  
 
See [[Manual:Short URL]].
 
See [[Manual:Short URL]].
  
===Is downloading and using all of MediaWiki.org free?===
+
=== Is downloading and using all of MediaWiki.org free? ===
  
Yes, it is free in the sense of [[:en:Free software|Free software]]. See [[Project:Copyrights]] for licensing issues regarding the written content of this site.
+
Yes, it is free in the sense of [[En:Free software|Free software]]. See [[Europarc:Copyrights|Project:Copyrights]] for licensing issues regarding the written content of this site.
  
 
=== How do I administrate/manage my users? ===
 
=== How do I administrate/manage my users? ===
 +
 
See [[Manual:User rights]] and [[Manual:User rights management]].
 
See [[Manual:User rights]] and [[Manual:User rights management]].
  
==Upgrading==
+
== Upgrading ==
  
 
Generic instructions on the upgrade process can be found in the '''<tt>UPGRADE</tt>''' file supplied with the software. See also ''[[Manual:Upgrading]]''.
 
Generic instructions on the upgrade process can be found in the '''<tt>UPGRADE</tt>''' file supplied with the software. See also ''[[Manual:Upgrading]]''.
Línea 189: Línea 189:
 
The logo that appears in the top left of each page is determined by the [[Manual:$wgLogo|$wgLogo]] configuration setting in the ''LocalSettings.php'' file.
 
The logo that appears in the top left of each page is determined by the [[Manual:$wgLogo|$wgLogo]] configuration setting in the ''LocalSettings.php'' file.
  
To change this you simply need to change the value of $wgLogo to point to the URL of your own logo image. You can upload a file via the wiki and use that address (which allows it to be replaced easily, so you may want to protect the page if you use this method) or use an image uploaded to your server via other means.
+
To change this you simply need to change the value of $wgLogo to point to the URL of your own logo image. You can upload a file via the wiki and use that address (which allows it to be replaced easily, so you may want to protect the page if you use this method) or use an image uploaded to your server via other means.
  
 
{{caution}} It is possible to simply overwrite the default logo installed with MediaWiki, but this is strongly advised against, as an upgrade may end up overwriting it or change the default location of this file.
 
{{caution}} It is possible to simply overwrite the default logo installed with MediaWiki, but this is strongly advised against, as an upgrade may end up overwriting it or change the default location of this file.
Línea 196: Línea 196:
  
 
=== How do I customize the logo in the top left corner? Can I? ===
 
=== How do I customize the logo in the top left corner? Can I? ===
The logo is a portlet block without a pBody section.  It is identified by the p-logo id.  The background image is specified by the '''wgLogo''' variable, which is defined in /includes/DefaultSettings.php. This location is relative to the web server root and not the system root. Redefine this in /[[LocalSettings.php]] to change the image. If set wrong there will be no image on the page; check your web server error log and adjust accordingly. However the size of the p-logo will need to be big enough for the logo if it is not to be clipped.  This is set in the stylesheet (Main.css in monobook), under the p-logo style, the default setting is:
 
  
<source lang="css">
+
The logo is a portlet block without a pBody section. It is identified by the p-logo id. The background image is specified by the '''wgLogo''' variable, which is defined in /includes/DefaultSettings.php. This location is relative to the web server root and not the system root. Redefine this in /[[LocalSettings.php]] to change the image. If set wrong there will be no image on the page; check your web server error log and adjust accordingly. However the size of the p-logo will need to be big enough for the logo if it is not to be clipped. This is set in the stylesheet (Main.css in monobook), under the p-logo style, the default setting is:
#p-logo {
+
 
    z-index: 3;
+
&lt;source lang="css"&gt;
    position:absolute; /*needed to use z-index */
+
 
    top: 0;
+
# p-logo {
    left: 0;
+
 
    height: 155px;
+
z-index: 3;
    width: 12em;
+
  position:absolute; /*needed to use z-index */
    overflow: visible;
+
  top: 0;
}
+
  left: 0;
</source>
+
  height: 155px;
 +
  width: 12em;
 +
  overflow: visible;
 +
 
 +
} &lt;/source&gt;
  
 
=== How do I customize the URL of the logo in the top left corner when you click it? ===
 
=== How do I customize the URL of the logo in the top left corner when you click it? ===
  
By default, clicking the logo takes you to the main page. If you want to change which page is the main page, edit [[MediaWiki:Mainpage]]. Or to make the link go to any arbitrary URL, for Monobook skin, edit Monobook.php and find and replace <code><?php echo htmlspecialchars($this->data['nav_urls']['mainpage']['href'])?></code> with the URL of your choice and replace <code><?php $this->msg('mainpage') ?></code> with the desired link title.
+
By default, clicking the logo takes you to the main page. If you want to change which page is the main page, edit [[MediaWiki:Mainpage]]. Or to make the link go to any arbitrary URL, for Monobook skin, edit Monobook.php and find and replace <code>&lt;?php echo htmlspecialchars($this-&gt;data['nav_urls']['mainpage']['href'])?&gt;</code> with the URL of your choice and replace <code>&lt;?php $this-&gt;msg('mainpage')&nbsp;?&gt;</code> with the desired link title.
 +
 
 +
=== Reducing the size of the logo ===
 +
 
 +
Note that a tag is on top of the logo so if you are trying to reduce the size of the logo's portlet you will also need to change the #p-logo a and #p-logo a:hover rules. The default setting for these is: &lt;source lang="css"&gt;
 +
 
 +
# p-logo a,
 +
# p-logo a:hover {
 +
 
 +
display: block;
 +
  height: 200px;
 +
  width: 12.2em;
 +
  background-repeat: no-repeat;
 +
  background-position: 35% 50%&nbsp;!important;
 +
  text-decoration: none;
 +
 
 +
} &lt;/source&gt;
 +
 
 +
This simple customization will re-define the size of all of them at once... &lt;source lang="css"&gt;
 +
 
 +
# p-logo,
 +
# p-logo a,
 +
# p-logo a:hover {
 +
 
 +
height: 75px;
 +
 
 +
} &lt;/source&gt; There is one more rule controlling the amount of space between the logo and first portlet in the side column - the padding on the top of #column-one. By default this is: &lt;source lang="css"&gt;
 +
 
 +
# column-one { padding-top: 160px; }
  
===Reducing the size of the logo===
+
&lt;/source&gt; If you want to remove the logo completely, comment out the '''wgLogo''' variable. Then set the column-one padding to a small value, such as 21: &lt;source lang="css"&gt;
  
Note that a tag is on top of the logo so if you are trying to reduce the size of the logo's portlet you will also need to change the #p-logo a and #p-logo a:hover rules. The default setting for these is:
+
# column-one { padding-top: 21px; }
<source lang="css">
 
#p-logo a,
 
#p-logo a:hover {
 
  display: block;
 
  height: 200px;
 
  width: 12.2em;
 
  background-repeat: no-repeat;
 
  background-position: 35% 50% !important;
 
  text-decoration: none;
 
}
 
</source>
 
  
This simple customization will re-define the size of all of them at once...
+
&lt;/source&gt;
<source lang="css">
 
#p-logo,
 
#p-logo a,
 
#p-logo a:hover {
 
  height: 75px;
 
}
 
</source>
 
There is one more rule controlling the amount of space between the logo and first portlet in the side column - the padding on the top of #column-one. By default this is:
 
<source lang="css">
 
#column-one { padding-top: 160px; }
 
</source>
 
If you want to remove the logo completely, comment out the '''wgLogo''' variable. Then set the column-one padding to a small value, such as 21:
 
<source lang="css">
 
#column-one { padding-top: 21px; }
 
</source>
 
  
You don't have to go edit the css file directly. You can go to <Your Wiki URL>?title=MediaWiki:Monobook.css. Hit edit and make your changes there. This has preference over the monobook main css.
+
You don't have to go edit the css file directly. You can go to &lt;Your Wiki URL&gt;?title=MediaWiki:Monobook.css. Hit edit and make your changes there. This has preference over the monobook main css.
  
 
=== How do I change the icon in the browser's address line (favicon)? ===
 
=== How do I change the icon in the browser's address line (favicon)? ===
Línea 269: Línea 274:
 
The contents of the navigation bar which appears to the left of each page using the Monobook skin are determined by the '''[[MediaWiki:Sidebar]]''' page. For information on customising these, please see [[Manual:Navigation bar]].
 
The contents of the navigation bar which appears to the left of each page using the Monobook skin are determined by the '''[[MediaWiki:Sidebar]]''' page. For information on customising these, please see [[Manual:Navigation bar]].
  
=== How do I put a text message (sitenotice) on every page? ===  
+
=== How do I put a text message (sitenotice) on every page? ===
  
 
Put a text in the '''[[MediaWiki:Sitenotice]]''' page. It will be displayed on top of every article page.
 
Put a text in the '''[[MediaWiki:Sitenotice]]''' page. It will be displayed on top of every article page.
Línea 279: Línea 284:
 
=== How do I hide the main page title? ===
 
=== How do I hide the main page title? ===
  
MediaWiki does not have a built-in option to hide the main page title (see [[MediaZilla:6129|bug 6129]]). Instead you must use JavaScript or CSS.
+
MediaWiki does not have a built-in option to hide the main page title (see [http://bugzilla.wikipedia.org/6129 bug 6129]). Instead you must use JavaScript or CSS.
 +
 
 +
==== Pre-1.9 ====
 +
 
 +
Before MediaWiki 1.9, you will need to use [[W:JavaScript|JavaScript]]. Some code that may or may not work is as follows (replace "Main Page" with the name of your main page if it differs):
 +
 
 +
&lt;source lang="javascript"&gt; var isMainPage = (document.title.substr(0, document.title.lastIndexOf(" - ")) == "Main Page"); var isDiff = (document.location.search &amp;&amp;
  
====Pre-1.9====
+
(document.location.search.indexOf("diff=")&nbsp;!= -1 ||
Before MediaWiki 1.9, you will need to use [[w:JavaScript|JavaScript]]. Some code that may or may not work is as follows (replace "Main Page" with the name of your main page if it differs):
+
  document.location.search.indexOf("oldid=")&nbsp;!= -1
 +
  )
 +
  );
  
<source lang="javascript">
+
if (isMainPage &amp;&amp;&nbsp;!isDiff) {
var isMainPage = (document.title.substr(0, document.title.lastIndexOf(" - ")) == "Main Page");
 
var isDiff = (document.location.search &&
 
                (document.location.search.indexOf("diff=") != -1 ||
 
                    document.location.search.indexOf("oldid=") != -1
 
                )
 
            );
 
if (isMainPage && !isDiff) {
 
    document.write('<style type="text/css">/*<![CDATA[*/ h1.firstHeading { display: none !important; } /*]]>*/</style>');
 
}
 
</source>
 
  
Alternatively, you can manually apply the patch from [[rev:17119|r17119]] to your copy of MediaWiki and use the solution for 1.9.
+
document.write('&lt;style type="text/css"&gt;/*&lt;![CDATA[*/ h1.firstHeading { display: none&nbsp;!important; } /*]]&gt;*/&lt;/style&gt;');
  
====1.9 and above====
+
} &lt;/source&gt;
In 1.9 and above, you can rely on [[w:Cascading Style Sheets|CSS]] to hide it.  Replace "Main_Page" with the appropriate page name, here with spaces replaced by underscores.
 
  
<source lang="css">
+
Alternatively, you can manually apply the patch from [[Rev:17119|r17119]] to your copy of MediaWiki and use the solution for 1.9.
body.page-Main_Page h1.firstHeading { display:none; }
+
 
</source>
+
==== 1.9 and above ====
 +
 
 +
In 1.9 and above, you can rely on [[W:Cascading Style Sheets|CSS]] to hide it. Replace "Main_Page" with the appropriate page name, here with spaces replaced by underscores.
 +
 
 +
&lt;source lang="css"&gt; body.page-Main_Page h1.firstHeading { display:none; } &lt;/source&gt;
  
 
If that doesn't work, look at the HTML source code to find the correct class to replace "page-Main_Page" with:
 
If that doesn't work, look at the HTML source code to find the correct class to replace "page-Main_Page" with:
  
<source lang="html4strict">
+
&lt;source lang="html4strict"&gt; &lt;body class="mediawiki ns-0 ltr page-Some_title"&gt; &lt;/source&gt;
<body class="mediawiki ns-0 ltr page-Some_title">
 
</source>
 
  
If no such class exists, then you cannot use this feature. You may be using a custom or outdated skin.
+
If no such class exists, then you cannot use this feature. You may be using a custom or outdated skin.
  
 
Another option is to <nowiki>#REDIRECT</nowiki> from Main_Page to Our_Main_Page.
 
Another option is to <nowiki>#REDIRECT</nowiki> from Main_Page to Our_Main_Page.
Línea 319: Línea 323:
 
The table of contents (TOC) is automatically shown once there are four or more headings in the article. The are multiple ways to hide it.
 
The table of contents (TOC) is automatically shown once there are four or more headings in the article. The are multiple ways to hide it.
  
====For one page====
+
==== For one page ====
 +
 
 
Place the magic word <tt>'''<nowiki>__NOTOC__</nowiki>'''</tt> into the page markup.
 
Place the magic word <tt>'''<nowiki>__NOTOC__</nowiki>'''</tt> into the page markup.
  
====For all pages====
+
==== For all pages ====
Edit the [[:en:CSS|CSS]] files; locate the style for the table of contents and add <tt>'''display: none;'''</tt> to the definition.
+
 
 +
Edit the [[En:CSS|CSS]] files; locate the style for the table of contents and add <tt>'''display: none;'''</tt> to the definition.
 +
 
 +
==== Per user ====
  
====Per user====
+
Users can also opt to have the table of contents hidden. This is a user preference, set in '''[[Especial:Preferences|Special:Preferences]]'''.
Users can also opt to have the table of contents hidden. This is a user preference, set in '''[[Special:Preferences]]'''.
 
  
 
=== How do I change the interface text? ===
 
=== How do I change the interface text? ===
  
Interface text is altered using the MediaWiki namespace. For each deviation from the default in the site language there is a page MediaWiki:''Englishmessagename'', and for each deviation from the default in each other language a page MediaWiki:''Englishmessagename''/''languagecode''. (Since release 1.9 there are no pages for messages equal to the default.). On creation of a page the edit box autofills with the default. When creating a page to override the default it is useful to first save the default version, to allow diffs with it. See also [[:meta:Help:System messages]].
+
Interface text is altered using the MediaWiki namespace. For each deviation from the default in the site language there is a page MediaWiki:''Englishmessagename'', and for each deviation from the default in each other language a page MediaWiki:''Englishmessagename''/''languagecode''. (Since release 1.9 there are no pages for messages equal to the default.). On creation of a page the edit box autofills with the default. When creating a page to override the default it is useful to first save the default version, to allow diffs with it. See also [[Meta:Help:System messages|meta:Help:System messages]].
  
* For a list of system messages, see '''[[Special:Allmessages]]'''
+
* For a list of system messages, see '''[[Especial:Allmessages|Special:Allmessages]]'''
 
* To switch ''off'' the MediaWiki namespace, see the '''[[Manual:$wgUseDatabaseMessages|$wgUseDatabaseMessages]]''' configuration setting
 
* To switch ''off'' the MediaWiki namespace, see the '''[[Manual:$wgUseDatabaseMessages|$wgUseDatabaseMessages]]''' configuration setting
 
* To remove the ''Privacy policy'' or ''Disclaimers'' links at the bottom of each page, set the content of pages '''[[MediaWiki:Privacy]]''' or '''[[MediaWiki:Disclaimers]]''' respectively to a single minus sign.
 
* To remove the ''Privacy policy'' or ''Disclaimers'' links at the bottom of each page, set the content of pages '''[[MediaWiki:Privacy]]''' or '''[[MediaWiki:Disclaimers]]''' respectively to a single minus sign.
Línea 342: Línea 349:
 
:<code>$wgLanguageCode = "fr";</code>
 
:<code>$wgLanguageCode = "fr";</code>
  
===How can I prevent editing by anonymous users?===
+
=== How can I prevent editing by anonymous users? ===
  
The recommended method is by changing the value of the <code>[[Manual:$wgGroupPermissions|$wgGroupPermissions]]</code> configuration option. Edit <code>[[LocalSettings.php]]</code> and add the line:
+
The recommended method is by changing the value of the <code>[[Manual:$wgGroupPermissions|$wgGroupPermissions]]</code> configuration option. Edit <code>[[LocalSettings.php]]</code> and add the line:
  
<source lang="php">$wgGroupPermissions['*']['edit'] = false;</source>
+
&lt;source lang="php"&gt;$wgGroupPermissions['*']['edit'] = false;&lt;/source&gt;
  
 
For more information on using this option, see the [[Preventing Access|Preventing access]] page and [[Manual:User rights]].
 
For more information on using this option, see the [[Preventing Access|Preventing access]] page and [[Manual:User rights]].
Línea 360: Línea 367:
 
Note: this will only work for MonoBook (the default skin), and doesn't actually stop people editing.
 
Note: this will only work for MonoBook (the default skin), and doesn't actually stop people editing.
  
===How do I add/remove tabs in general?===
+
=== How do I add/remove tabs in general? ===
To (for example) remove the talk tab and then add one that always goes to the main page you would save this code in (for example) extensions/AR-Tabs.php:
+
 
<source lang="php">
+
To (for example) remove the talk tab and then add one that always goes to the main page you would save this code in (for example) extensions/AR-Tabs.php: &lt;source lang="php"&gt;
 +
 
 
  $wgHooks['SkinTemplateContentActions'][] = 'ReplaceTabs';
 
  $wgHooks['SkinTemplateContentActions'][] = 'ReplaceTabs';
  function ReplaceTabs ($content_actions) {
+
  function ReplaceTabs ($content_actions) {  
    unset( $content_actions['talk'] );   //only this to remove an action
+
  unset( $content_actions['talk'] ); //only this to remove an action
    $maintitle = Title::newFromText(wfMsg('mainpage') );
+
  $maintitle = Title::newFromText(wfMsg('mainpage') );
      $main_action['main'] = array(
+
  $main_action['main'] = array(
        'class' => false or 'selected',   //if the tab should be highlighted
+
  'class' =&gt; false or 'selected', //if the tab should be highlighted
        'text' => wfMsg('sitetitle'),     //what the tab says
+
  'text' =&gt; wfMsg('sitetitle'), //what the tab says
        'href' => $maintitle->getFullURL(),   //where it links to
+
  'href' =&gt; $maintitle-&gt;getFullURL(), //where it links to
      );
+
  );
      $content_actions = array_merge( $main_action, $content_actions);   //add a new action
+
  $content_actions = array_merge( $main_action, $content_actions); //add a new action
      return true;
+
  return true;
 
  }
 
  }
</source>
+
 
and then add
+
&lt;/source&gt; and then add &lt;source lang="php"&gt;require_once("extensions/AR-Tabs.php");&lt;/source&gt; to the bottom of LocalSettings.php
<source lang="php">require_once("extensions/AR-Tabs.php");</source>
 
to the bottom of LocalSettings.php
 
  
 
=== How do I hide the section edit links for users who are not logged in? ===
 
=== How do I hide the section edit links for users who are not logged in? ===
  
#The recommended method is by changing the value of the <code>[[Manual:$wgDefaultUserOptions|$wgDefaultUserOptions]]</code> configuration option.<br/>Edit <code>[[LocalSettings.php]]</code> and add the line:<br/><source lang="php">$wgDefaultUserOptions ['editsection'] = false;</source>
+
# The recommended method is by changing the value of the <code>[[Manual:$wgDefaultUserOptions|$wgDefaultUserOptions]]</code> configuration option.<br>Edit <code>[[LocalSettings.php]]</code> and add the line:<br>&lt;source lang="php"&gt;$wgDefaultUserOptions ['editsection'] = false;&lt;/source&gt;
#Alternatively you could manually edit each skin (e.g. <code>MonoBook.php</code>) and add this before <code></head></code>:
+
# Alternatively you could manually edit each skin (e.g. <code>MonoBook.php</code>) and add this before <code>&lt;/head&gt;</code>:
 +
<blockquote>&lt;source lang="php"&gt; &lt;?php if(!$this-&gt;data['loggedin']) {&nbsp;?&gt; &lt;style&gt; .editsection { display: none; } &lt;/style&gt; &lt;?php }&nbsp;?&gt; &lt;/source&gt;</blockquote>
 +
:If you want to hide the links for all users including logged in users, instead edit <code>monobook/main.css</code> and add:
 +
:&lt;source lang="css"&gt;.editsection { display: none; }&lt;/source&gt;
  
<blockquote>
+
:Also see [[Manual:Faq#How can I prevent editing by anonymous users?|How can I prevent editing by anonymous users?]]
<source lang="php">
 
<?php if(!$this->data['loggedin']) { ?>
 
      <style>
 
        .editsection { display: none; }
 
      </style>
 
<?php } ?>
 
</source>
 
</blockquote>
 
  
:If you want to hide the links for all users including logged in users, instead edit <code>monobook/main.css</code> and add:
+
=== How do I remove the "Talk for this IP" link at the top right when [[Manual:$wgDisableAnonTalk|$wgDisableAnonTalk]] is true ===
:<source lang="css">.editsection { display: none; }</source>
+
 
 +
Set [[Manual:$wgShowIPinHeader|$wgShowIPinHeader]] to false
 +
 
 +
=== How do I remove the "Create an Account or Login" link at the top right of the screen? ===
  
:Also see [[Manual:Faq#How_can_I_prevent_editing_by_anonymous_users?|How can I prevent editing by anonymous users?]]
+
In Monobook.php change this statement: &lt;source lang="php"&gt;
  
===How do I remove the "Talk for this IP" link at the top right when [[Manual:$wgDisableAnonTalk|$wgDisableAnonTalk]] is true===
+
foreach($this-&gt;data['personal_urls'] as $key =&gt; $item) {
  
Set [[Manual:$wgShowIPinHeader|$wgShowIPinHeader]] to false
+
&lt;/source&gt; to: &lt;source lang="php"&gt;
  
===How do I remove the "Create an Account or Login" link at the top right of the screen?===
+
foreach($this-&gt;data['personal_urls'] as $key =&gt; $item) if($this-&gt;data['loggedin']==1) {
  
In Monobook.php change this statement:
+
&lt;/source&gt;
<source lang="php">
 
  foreach($this->data['personal_urls'] as $key => $item) {
 
</source>
 
to:
 
<source lang="php">
 
foreach($this->data['personal_urls'] as $key => $item)  if($this->data['loggedin']==1) {
 
</source>
 
  
===How do I change the footer?===
+
=== How do I change the footer? ===
  
To add or remove items from the footer on your MediaWiki page, you must edit the skin.  
+
To add or remove items from the footer on your MediaWiki page, you must edit the skin.
  
 
For example: if you go in to MonoBook.php (located by default in the "Skins" folder) you will find the following code:
 
For example: if you go in to MonoBook.php (located by default in the "Skins" folder) you will find the following code:
  
<source lang="php">
+
&lt;source lang="php"&gt;
 +
 
 
  $footerlinks = array(
 
  $footerlinks = array(
  'lastmod', 'viewcount', 'numberofwatchingusers', 'credits', 'copyright',
+
  'lastmod', 'viewcount', 'numberofwatchingusers', 'credits', 'copyright',
  'privacy', 'about', 'disclaimer', 'tagline',
+
  'privacy', 'about', 'disclaimer', 'tagline',
 
   );
 
   );
</source>
+
 
 +
&lt;/source&gt;
  
 
In the above you can simply add and remove items from the footer that you wish to appear in your footer. Remember the changes may not appear immediatly because of [[File cache|MediaWiki caches]].
 
In the above you can simply add and remove items from the footer that you wish to appear in your footer. Remember the changes may not appear immediatly because of [[File cache|MediaWiki caches]].
  
 
You can also customize the individual items by modifying certain pages or parameters:
 
You can also customize the individual items by modifying certain pages or parameters:
* lastmod - edit [[MediaWiki:Lastmodifiedat]] (verison 1.8 and after) or [[MediaWiki:Lastmodified]] (version 1.7 and before). If [[Manual:$wgMaxCredits|$wgMaxCredits]] is enabled, then edit [[MediaWiki:Lastmodifiedatby]] (verison 1.8 and after) or [[MediaWiki:lastmodifiedby]] (version 1.7 and before). ([[bugzilla:6518|6518]])
+
 
 +
* lastmod - edit [[MediaWiki:Lastmodifiedat]] (verison 1.8 and after) or [[MediaWiki:Lastmodified]] (version 1.7 and before). If [[Manual:$wgMaxCredits|$wgMaxCredits]] is enabled, then edit [[MediaWiki:Lastmodifiedatby]] (verison 1.8 and after) or [[MediaWiki:Lastmodifiedby|MediaWiki:lastmodifiedby]] (version 1.7 and before). ([[Bugzilla:6518|6518]])
 
* viewcount - edit [[MediaWiki:Viewcount]]
 
* viewcount - edit [[MediaWiki:Viewcount]]
 
* numberofwatchingusers - edit [[MediaWiki:Number of watching users pageview]]. This only appears if you also add <code>$wgPageShowWatchingUsers = true;</code> to LocalSettings.php.
 
* numberofwatchingusers - edit [[MediaWiki:Number of watching users pageview]]. This only appears if you also add <code>$wgPageShowWatchingUsers = true;</code> to LocalSettings.php.
* copyright - edit [[MediaWiki:Copyright]]. The parameter $1 on that page is replaced with a link to the details of copyright for your wiki. In LocalSettings.php $wgRightsText for the link text and set either $wgRightsPage or $wgRightsUrl with the location of a wiki page or external URL.
+
* copyright - edit [[MediaWiki:Copyright]]. The parameter $1 on that page is replaced with a link to the details of copyright for your wiki. In LocalSettings.php $wgRightsText for the link text and set either $wgRightsPage or $wgRightsUrl with the location of a wiki page or external URL.
 
* privacy - this is a link only. Edit [[MediaWiki:Privacy]] for the link text and [[MediaWiki:Privacypage]] for the wiki page to which to link.
 
* privacy - this is a link only. Edit [[MediaWiki:Privacy]] for the link text and [[MediaWiki:Privacypage]] for the wiki page to which to link.
 
* about - this is a link only. Edit [[MediaWiki:Aboutsite]] for the link text and [[MediaWiki:Aboutpage]] for the wiki page to which to link.
 
* about - this is a link only. Edit [[MediaWiki:Aboutsite]] for the link text and [[MediaWiki:Aboutpage]] for the wiki page to which to link.
Línea 443: Línea 443:
  
 
;Line breaks in footer
 
;Line breaks in footer
For line breaks in the footer, search for '''Content is available under''' in the MessagesEn.php and then put line breaks before and after so that it looks like <code><nowiki>'<br />Content is available under $1.<br />',</nowiki></code> It is valid XHTML 1.0 Transitional. NOTE: It would probably be better to just edit the system message (see [[Special pages]]) to add <nowiki><br></nowiki> before and after the message.
+
 
 +
For line breaks in the footer, search for '''Content is available under''' in the MessagesEn.php and then put line breaks before and after so that it looks like <code><nowiki>'&lt;br /&gt;Content is available under $1.&lt;br /&gt;',</nowiki></code> It is valid XHTML 1.0 Transitional. NOTE: It would probably be better to just edit the system message (see [[Special pages]]) to add <nowiki>&lt;br&gt;</nowiki> before and after the message.
  
 
=== How can I edit / remove the Powered by MediaWiki image in the footer? ===
 
=== How can I edit / remove the Powered by MediaWiki image in the footer? ===
  
You can hide the Powered by MediaWiki image by adding the following to your wiki's [[MediaWiki:Common.css]]:
+
You can hide the Powered by MediaWiki image by adding the following to your wiki's [[MediaWiki:Common.css]]: &lt;source lang="css"&gt;
<source lang="css">
+
 
#f-poweredbyico { display: none; }
+
# f-poweredbyico { display: none; }
</source>
 
  
If you want to remove it completely, you could alter <tt>/skins/MonoBook.php</tt>, which contains the following code that makes the Powered by MediaWiki image appear in the footer:
+
&lt;/source&gt;
<source lang="php">
 
<?php
 
if($this->data['poweredbyico']) { ?>
 
<div id="f-poweredbyico"><?php $this->html('poweredbyico') ?></div>
 
</source>
 
If you would like to remove this image completely, or edit the image, you must locate and edit poweredbyico. It is located in <tt>skins/common/images/</tt> and the image is called <tt>poweredby_mediawiki_88x31.png</tt>.
 
  
If you're happy with the logo (or not) and simply want to change the destination link, the code is in '''getPoweredBy() function''' of '''includes\Skin.php.''' Just change the line '''<nowiki>$img = '<a href="http://www.mediawiki.org/"><img src="'.$url.'" alt="Powered by MediaWiki" /></a>';</nowiki>''' to whatever.
+
If you want to remove it completely, you could alter <tt>/skins/MonoBook.php</tt>, which contains the following code that makes the Powered by MediaWiki image appear in the footer: &lt;source lang="php"&gt; &lt;?php if($this-&gt;data['poweredbyico']) {&nbsp;?&gt;
 +
<div id="f-poweredbyico">&lt;?php $this-&gt;html('poweredbyico')&nbsp;?&gt;</div>
 +
&lt;/source&gt; If you would like to remove this image completely, or edit the image, you must locate and edit poweredbyico. It is located in <tt>skins/common/images/</tt> and the image is called <tt>poweredby_mediawiki_88x31.png</tt>.
 +
 
 +
If you're happy with the logo (or not) and simply want to change the destination link, the code is in '''getPoweredBy() function''' of '''includes\Skin.php.''' Just change the line '''<nowiki>$img = '&lt;a href="http://www.mediawiki.org/"&gt;&lt;img src="'.$url.'" alt="Powered by MediaWiki" /&gt;&lt;/a&gt;';</nowiki>''' to whatever.
 +
 
 +
=== How can I change what the &lt;title&gt; of each page is? Where do I make changes? ===
  
=== How can I change what the <title> of each page is? Where do I make changes?===
 
 
Most of the text that you want to change, can be found in the namespace of MediaWiki.
 
Most of the text that you want to change, can be found in the namespace of MediaWiki.
  
 
In order to change titles, texts, announcements and the such, go to Special:Allmessages, where you will see the text associated with the pages you wish to change. (As far as I can tell, you need to log in as an administrator (like the one you made when you installed) to edit the protected entries in the MediaWiki namespace.)
 
In order to change titles, texts, announcements and the such, go to Special:Allmessages, where you will see the text associated with the pages you wish to change. (As far as I can tell, you need to log in as an administrator (like the one you made when you installed) to edit the protected entries in the MediaWiki namespace.)
  
If you want to change the title in your browser, you need to edit [[MediaWiki:pagetitle]]. Go there and edit it just like you would any other page in your Wiki.
+
If you want to change the title in your browser, you need to edit [[MediaWiki:Pagetitle|MediaWiki:pagetitle]]. Go there and edit it just like you would any other page in your Wiki.
  
In recent versions of MediaWiki, [[MediaWiki:Pagetitle]] is <nowiki>$1 - {{SITENAME}}</nowiki> by default. If <nowiki>{{SITENAME}}</nowiki> is producing the wrong text for you, you need to set $wgSitename in your LocalSettings.php.  
+
In recent versions of MediaWiki, [[MediaWiki:Pagetitle]] is <nowiki>$1 - {{SITENAME}}</nowiki> by default. If <nowiki>{{SITENAME}}</nowiki> is producing the wrong text for you, you need to set $wgSitename in your LocalSettings.php.
  
If $wgSitename is correct in LocalSettings.php but <nowiki>{{SITENAME}}</nowiki> is still wrong, it may be that you're using a user-contributed language file which incorrectly sets $wgSitename to a transliteration of "Wikipedia". Edit the language file to correct this. For example, the hebrew language file is at <tt>languages/LanguageHe.php</tt> in your wiki directory.  
+
If $wgSitename is correct in LocalSettings.php but <nowiki>{{SITENAME}}</nowiki> is still wrong, it may be that you're using a user-contributed language file which incorrectly sets $wgSitename to a transliteration of "Wikipedia". Edit the language file to correct this. For example, the hebrew language file is at <tt>languages/LanguageHe.php</tt> in your wiki directory.
  
 
Don't forget to clear your browser cache after you fix it.
 
Don't forget to clear your browser cache after you fix it.
  
===How do I make external links open in a new window?===
+
=== How do I make external links open in a new window? ===
 +
 
 
See [[Manual:Opening external links in a new window|Opening external links in a new window]].
 
See [[Manual:Opening external links in a new window|Opening external links in a new window]].
  
===How can I suppress MediaWiki from formatting urls, tags, etc?===
+
=== How can I suppress MediaWiki from formatting urls, tags, etc? ===
  <nowiki>svn co <nowiki>http://somwhere.in.the.net/myproject/</nowiki></nowiki>
+
 
 +
  <nowiki>svn co &lt;nowiki&gt;http://somwhere.in.the.net/myproject/</nowiki>&lt;/nowiki&gt;
 +
 
 
svn co <nowiki>http://somewhere.in.the.net/myproject/</nowiki>
 
svn co <nowiki>http://somewhere.in.the.net/myproject/</nowiki>
  
===How can I force users to preview before they save?===
+
=== How can I force users to preview before they save? ===
 +
 
 
To curb cursory negligence it may be desirable to disable the save button on the edit page, so users ''must'' preview first.
 
To curb cursory negligence it may be desirable to disable the save button on the edit page, so users ''must'' preview first.
  
 
Here's how to reach that goal by only showing the save button on the preview page:
 
Here's how to reach that goal by only showing the save button on the preview page:
  
In /includes/EditPage.php, find (line number 1238 in MediaWiki 1.9.0, 1158 in MediaWiki 1.8.2):
+
In /includes/EditPage.php, find (line number 1238 in MediaWiki 1.9.0, 1158 in MediaWiki 1.8.2): &lt;source lang="php"&gt;
<source lang="php">
+
 
"<div class='editButtons'>;
+
"
{$buttons['save']}
+
<div class="editButtons">;  
{$buttons['preview']}
+
{$buttons['save']}
</source>
+
  {$buttons['preview']}
and replace these three lines with the following seven
+
 
<source lang="php">
+
&lt;/source&gt; and replace these three lines with the following seven &lt;source lang="php"&gt;
"<div class='editButtons'>");
+
"<div class="editButtons">");  
if ( $this->formtype == 'preview') {
+
if ( $this-&gt;formtype == 'preview') {
$wgOut->addHTML(
+
  $wgOut-&gt;addHTML(
 
  "{$buttons['save']}");
 
  "{$buttons['save']}");
}
+
  }
$wgOut->addHTML(
+
  $wgOut-&gt;addHTML(
 
  "{$buttons['preview']}
 
  "{$buttons['preview']}
</source>
+
 
 +
&lt;/source&gt;
  
 
:''See also: [[Manual:Force preview]].''
 
:''See also: [[Manual:Force preview]].''
  
 
=== How do I add more buttons on the edit page? ===
 
=== How do I add more buttons on the edit page? ===
For adding more toolbar buttons above the edit field, you can use JavaScript code to register them in <tt>mwCustomEditButtons</tt> in your [[MediaWiki:common.js]]. For example, a button for large text:
 
  
<source lang="javascript">
+
For adding more toolbar buttons above the edit field, you can use JavaScript code to register them in <tt>mwCustomEditButtons</tt> in your [[MediaWiki:Common.js|MediaWiki:common.js]]. For example, a button for large text:
var button = {
+
 
        "imageFile": "images/5/56/Button_big.png", //image to be shown on the button (may be a full URL too), 22x22 pixels
+
&lt;source lang="javascript"&gt; var button = {
        "speedTip": "big text",   //text shown in a tooltip when hovering the mouse over the button
+
 
        "tagOpen": "<big>",       //the text to use to mark the beginning of the block
+
"imageFile": "images/5/56/Button_big.png", //image to be shown on the button (may be a full URL too), 22x22 pixels
        "tagClose": "</big>",     //the text to use to mark the end of the block (if any)
+
  "speedTip": "big text", //text shown in a tooltip when hovering the mouse over the button
        "sampleText": "big text"   //the sample text to place inside the block
+
  "tagOpen": "<big>", //the text to use to mark the beginning of the block
};
+
  "tagClose": "</big>", //the text to use to mark the end of the block (if any)
mwCustomEditButtons.push(button);
+
  "sampleText": "big text" //the sample text to place inside the block
</source>
+
 
 +
}; mwCustomEditButtons.push(button); &lt;/source&gt;
 +
 
 +
=== How can I get more special characters or tags clickable on the edit page? ===
  
=== How can I get more special characters or tags clickable on the edit page?  ===
 
 
For adding more selectable special characters, etc, below the edit field, See [[Extension:CharInsert]]
 
For adding more selectable special characters, etc, below the edit field, See [[Extension:CharInsert]]
  
==Basic usage==
+
== Basic usage ==
  
===How do I edit a page?===
+
=== How do I edit a page? ===
  
 
To edit a page, simply click the '''edit''' link that appears on each page. Using the default MonoBook skin, this is in the form of a tab at the top of the page. A form will appear, containing the existing markup. When you have finished making modifications, click the '''Save''' button to commit your changes.
 
To edit a page, simply click the '''edit''' link that appears on each page. Using the default MonoBook skin, this is in the form of a tab at the top of the page. A form will appear, containing the existing markup. When you have finished making modifications, click the '''Save''' button to commit your changes.
Línea 531: Línea 536:
 
''See also:'' {{meta|Help:Editing}}
 
''See also:'' {{meta|Help:Editing}}
  
===How do I create a new page?===
+
=== How do I create a new page? ===
  
 
There are several paths to creating a new page:
 
There are several paths to creating a new page:
  
*Create a link to the page on another page, then click on the red link which appears
+
* Create a link to the page on another page, then click on the red link which appears
*Browse to the intended location of the page, e.g. <nowiki>http://www.foowiki.org/index.php?title=New_page</nowiki> and click on the '''edit''' link.
+
* Browse to the intended location of the page, e.g. <nowiki>http://www.foowiki.org/index.php?title=New_page</nowiki> and click on the '''edit''' link.
On some wikis,
 
a failed search for a page will contain a link which allows you to edit that page.
 
  
See [[Help:Starting a new page]]
+
On some wikis, a failed search for a page will contain a link which allows you to edit that page.
 +
 
 +
See [[Ayuda:Starting a new page|Help:Starting a new page]]
  
 
=== How do I delete an old version of a page? ===
 
=== How do I delete an old version of a page? ===
Línea 549: Línea 554:
 
* The [[Extension:Oversight|Oversight]] extension (also known as ''HideRevision'') can be used to move harmful revisions out of page histories
 
* The [[Extension:Oversight|Oversight]] extension (also known as ''HideRevision'') can be used to move harmful revisions out of page histories
 
* The <tt>maintenance/deleteOldRevisions.php</tt> [[Manual:Maintenance scripts|maintenance script]] can mass-delete all old revisions of pages and their associated text records.
 
* The <tt>maintenance/deleteOldRevisions.php</tt> [[Manual:Maintenance scripts|maintenance script]] can mass-delete all old revisions of pages and their associated text records.
*See also: [[Manual:Removing embarrassment?]].
+
* See also: [[Manual:Removing embarrassment?]]. <!--{12061208756541} -->
<!-- Why not talk about [[Extension:SpecialDeleteOldRevisions]] ? -->
 
  
===Are there any editing tutorials available?===
+
=== Are there any editing tutorials available? ===
  
 
There are several editing tutorials available, mostly on Wikimedia sister projects, such as Wikipedia. There are also markup references, etc. available on ''Meta''.
 
There are several editing tutorials available, mostly on Wikimedia sister projects, such as Wikipedia. There are also markup references, etc. available on ''Meta''.
  
*[[m:Help:Editing|Editing]] help content on ''Meta''
+
* [[M:Help:Editing|Editing]] help content on ''Meta''
*The ''[[:en:Wikipedia:How to edit a page|How to edit a page]]'' guide on the English Wikipedia
+
* The ''[[En:Wikipedia:How to edit a page|How to edit a page]]'' guide on the English Wikipedia
  
===How do I view the printable form of a page?===
+
=== How do I view the printable form of a page? ===
  
 
MediaWiki includes stylesheets which automatically style a page appropriately when it is printed; using the print or print preview function within your browser ought to render the page in a printable form.
 
MediaWiki includes stylesheets which automatically style a page appropriately when it is printed; using the print or print preview function within your browser ought to render the page in a printable form.
Línea 565: Línea 569:
 
You can also view this printable form using the ''printable version'' link in the toolbox.
 
You can also view this printable form using the ''printable version'' link in the toolbox.
  
==Wiki Importing==
+
== Wiki Importing ==
  
 
=== Importing from other types of wiki ===
 
=== Importing from other types of wiki ===
  
'''Note:''' The following is directly copied from [http://meta.wikimedia.org/w/index.php?title=MediaWiki_FAQ old meta FAQ]. It might need to be corrected.  
+
'''Note:''' The following is directly copied from [http://meta.wikimedia.org/w/index.php?title=MediaWiki_FAQ old meta FAQ]. It might need to be corrected.
  
 
There is some documentation about importing in the UPGRADE file distributed with MediaWiki.
 
There is some documentation about importing in the UPGRADE file distributed with MediaWiki.
Línea 575: Línea 579:
 
To follow on from those, this is how at least one individual imported pages from usemod to MediaWiki:
 
To follow on from those, this is how at least one individual imported pages from usemod to MediaWiki:
  
Because MediaWiki does not automatically link to [[CamelCase]] style links, you will need to add brackets <nowiki> [[ ]] </nowiki> to all your links. You can do this with the following:
+
Because MediaWiki does not automatically link to [[CamelCase]] style links, you will need to add brackets <nowiki>[[ ]]</nowiki> to all your links. You can do this with the following:
  
First, obtain ImportStage1.txt (or whatever you want to call it) from the importUseModWiki.php script ( use > to pipe the output to a file )
+
First, obtain ImportStage1.txt (or whatever you want to call it) from the importUseModWiki.php script ( use &gt; to pipe the output to a file )
 
 
Second, do
 
 
 
<pre>
 
sed '/Importing/!s/\ [A-Z]\w*[a-z]\w*[A-Z]\w*[a-zA-Z]/\ \[\[&\]\] /g'
 
    ImportStage1.txt > ImportStage2.txt
 
</pre>
 
  
 +
Second, do
 +
<pre>sed '/Importing/!s/\ [A-Z]\w*[a-z]\w*[A-Z]\w*[a-zA-Z]/\ \[\[&amp;\]\] /g'
 +
ImportStage1.txt &gt; ImportStage2.txt
 +
</pre>
 
This should create proper links in place of your CamelCase links.
 
This should create proper links in place of your CamelCase links.
  
Línea 591: Línea 592:
  
 
Then,
 
Then,
 
+
<pre>sed 's/upload\:\w*\.\w*/http\:\/\/aberwiki\.org\/uploads\/&amp; /g'
<pre>
+
ImportStage2.txt &gt; ImportStage3.txt
sed 's/upload\:\w*\.\w*/http\:\/\/aberwiki\.org\/uploads\/& /g'
+
</pre>  
    ImportStage2.txt > ImportStage3.txt
 
</pre>
 
 
 
 
This fixes your upload links. Change the replace text so it fills in your url such as <nowiki>http://www.yourwiki.org/uploads/filename</nowiki>
 
This fixes your upload links. Change the replace text so it fills in your url such as <nowiki>http://www.yourwiki.org/uploads/filename</nowiki>
  
You are now ready to import ImportStage3.txt into your database with a command such as  
+
You are now ready to import ImportStage3.txt into your database with a command such as
 
+
<pre>mysql -u&lt;mysqluser&gt; -p&lt;yourpass&gt; &lt;db name&gt; &lt; ImportStage3.txt
<pre>
+
</pre>  
mysql -u<mysqluser> -p<yourpass> <db name> < ImportStage3.txt
 
</pre>
 
 
 
 
'''Note:''' If your <code>importUseModWiki.php</code> outputs an XML file instead of SQL statements, this probably means you have a rather new version of MediaWiki. In such a case, you case import the XML file -- see [[Importing a Wikipedia database dump into MediaWiki]], towards the bottom of the page ('Import XML'). Don't forget to rebuild all the tables -- that page also explains how to do that.
 
'''Note:''' If your <code>importUseModWiki.php</code> outputs an XML file instead of SQL statements, this probably means you have a rather new version of MediaWiki. In such a case, you case import the XML file -- see [[Importing a Wikipedia database dump into MediaWiki]], towards the bottom of the page ('Import XML'). Don't forget to rebuild all the tables -- that page also explains how to do that.
  
Línea 620: Línea 615:
 
Taken from [http://xpt.sourceforge.net/tools/wiki_import/ wiki_import - mediawiki auto import script]:
 
Taken from [http://xpt.sourceforge.net/tools/wiki_import/ wiki_import - mediawiki auto import script]:
  
 +
<br>
  
 
==== Description ====
 
==== Description ====
Línea 625: Línea 621:
 
The script is designed to import a whole folder of files into mediawiki, with the folder directory tree mapped as wiki category hierarchy.
 
The script is designed to import a whole folder of files into mediawiki, with the folder directory tree mapped as wiki category hierarchy.
  
==== Features ====  
+
==== Features ====
  
 
* economic, build wiki site from existing knowledge base collection without "double-entry"
 
* economic, build wiki site from existing knowledge base collection without "double-entry"
Línea 635: Línea 631:
 
==== Quick Help ====
 
==== Quick Help ====
  
<tt>
+
<tt>wiki_import.sh $ $Revision: 1.1 $</tt>
wiki_import.sh $ $Revision: 1.1 $
+
 
 +
<tt>mediawiki automatic file import script</tt>
 +
 
 +
<tt>Usage: wiki_import.sh [OPTIONS]...</tt>
  
mediawiki automatic file import script
+
<tt>The script is designed to import a whole folder of files into mediawiki, with the folder directory tree mapped as wiki category hierarchy.</tt>
  
Usage: wiki_import.sh [OPTIONS]...
+
<tt>The specification of the file-to-import is passed from standard input.</tt>
  
The script is designed to import a whole folder of files into mediawiki, with
+
<tt>Options:</tt>
the folder directory tree mapped as wiki category hierarchy.
 
  
The specification of the file-to-import is passed from standard input.
+
<tt>-s, --sect=n the root category section of the wiki
 +
  of the imported article (mandatory)
 +
  -1, --header include standard header (category hierarchy path &amp; notice)
 +
  -l, --link link to actual file on the web site
 +
  -f, --footer include standard footer (article category)
 +
  -R, --res[=p] add restricted tag in the footer
 +
  as '{{<Res Param|Root Category> Restricted}}'
 +
  (default=`$_opt_sect')
 +
</tt>
  
Options:
+
<tt>Configuration Options:</tt>
  -s, --sect=n    the root category section of the wiki
 
                    of the imported article (mandatory)
 
  -1, --header    include standard header (category hierarchy path & notice)
 
  -l, --link      link to actual file on the web site
 
  -f, --footer    include standard footer (article category)
 
  -R, --res[=p]    add restricted tag in the footer
 
                    as '{{<Res Param|Root Category> Restricted}}' 
 
                    (default=`$_opt_sect')
 
  
Configuration Options:
+
<tt>-p, --php=fn mediawiki import php script specification
  -p, --php=fn     mediawiki import php script specification
+
   -r, --root=n the root category name for the whole wiki site
   -r, --root=n     the root category name for the whole wiki site
+
   -m, --max=n max_allowed_packet for mysqld to import
   -m, --max=n     max_allowed_packet for mysqld to import
+
   -u, --user=n wiki user used for the import
   -u, --user=n     wiki user used for the import
+
   -a, --arch=p the root url that linked-to archive files based on
   -a, --arch=p     the root url that linked-to archive files based on
+
</tt>
  
Examples:
+
<tt>Examples:</tt>
  
  echo ./path/to/file.ext | wiki_import.sh -1 -l -f -s 'Customer Support' -R  
+
<tt>echo ./path/to/file.ext | wiki_import.sh -1 -l -f -s 'Customer Support' -R  
</tt>
+
</tt>
  
For the rest of details, check out [http://xpt.sourceforge.net/tools/wiki_import/  wiki_import].
 
  
==Customising further==
 
  
===How can I allow use of HTML tags?===
+
For the rest of details, check out [http://xpt.sourceforge.net/tools/wiki_import/ wiki_import].
 +
 
 +
== Customising further ==
 +
 
 +
=== How can I allow use of HTML tags? ===
 +
 
 
See [[Manual:$wgRawHtml]] as well as [[Manual:$wgGroupPermissions]] and [[Manual:Preventing access]].
 
See [[Manual:$wgRawHtml]] as well as [[Manual:$wgGroupPermissions]] and [[Manual:Preventing access]].
  
Línea 680: Línea 681:
 
See [[Extension:SecureHTML]] and [[Extension:HTMLets]] for ways to make this safe(er).
 
See [[Extension:SecureHTML]] and [[Extension:HTMLets]] for ways to make this safe(er).
  
===How can I allow uploading of HTML files?===
+
=== How can I allow uploading of HTML files? ===
 +
 
 
See [[Manual:Allowing HTML Uploads]].
 
See [[Manual:Allowing HTML Uploads]].
  
 
{{template:caution}} This can be easily abused to attack users
 
{{template:caution}} This can be easily abused to attack users
  
==Why...?==
+
== Why...? ==
  
===...is the Help namespace empty?===
+
=== ...is the Help namespace empty? ===
  
We don't currently have a clean, internationalised set of help pages under a free license. A few developers are hoping to make this possible; however, the Help namespace currently ships in a blank state. You are free to add your own help pages, copy the [[Help:Contents|Public Domain help pages]] or copy certain of the items from ''Meta'', e.g. the user guide or [[m:Help:Contents|MediaWiki Handbook]], these two collections being free to use under the [[:en:GNU Free Documentation License|GNU Free Documentation License]].
+
We don't currently have a clean, internationalised set of help pages under a free license. A few developers are hoping to make this possible; however, the Help namespace currently ships in a blank state. You are free to add your own help pages, copy the [[Ayuda:Contents|Public Domain help pages]] or copy certain of the items from ''Meta'', e.g. the user guide or [[M:Help:Contents|MediaWiki Handbook]], these two collections being free to use under the [[En:GNU Free Documentation License|GNU Free Documentation License]].
  
===...are some of my images not showing up after an upgrade?===
+
=== ...are some of my images not showing up after an upgrade? ===
  
 
Several users have reported that, following an upgrade or a moving of their wiki, several images fail to be shown inline. The files exist, and the image description pages show a MIME type of <tt>unknown / unknown</tt> and, in some cases, a warning about potentially dangerous files.
 
Several users have reported that, following an upgrade or a moving of their wiki, several images fail to be shown inline. The files exist, and the image description pages show a MIME type of <tt>unknown / unknown</tt> and, in some cases, a warning about potentially dangerous files.
Línea 697: Línea 699:
 
To fix this, run the <tt>maintenance/rebuildImages.php</tt> script from the command line. This will set MIME information for each file in the database.
 
To fix this, run the <tt>maintenance/rebuildImages.php</tt> script from the command line. This will set MIME information for each file in the database.
  
===...are all PNG files not being turned into thumbnails?===
+
=== ...are all PNG files not being turned into thumbnails? ===
  
After upgrading to a more recent version of PHP, it is possible a different MimeMagic.php function is being used to detect file MIME types, particularly the built-in PHP function mime_content_type, which fails to detect PNG files. Search the web for <i>mime_content_type png</i> for information on fixing this bug at the PHP level, possibly by editing your magic.mime file.
+
After upgrading to a more recent version of PHP, it is possible a different MimeMagic.php function is being used to detect file MIME types, particularly the built-in PHP function mime_content_type, which fails to detect PNG files. Search the web for ''mime_content_type png'' for information on fixing this bug at the PHP level, possibly by editing your magic.mime file.
  
'''See [[Manual:FAQ#"File is corrupt or has an invalid extension"|here]] for more info.'''
+
'''See [[Manual:FAQ#|here]] for more info.'''
  
 
=== ...is a search for a short keyword giving no hits? ===
 
=== ...is a search for a short keyword giving no hits? ===
Línea 712: Línea 714:
 
* To repair the search index table, run the query <code>REPAIR TABLE searchindex;</code> against your database
 
* To repair the search index table, run the query <code>REPAIR TABLE searchindex;</code> against your database
  
===...can't I download MediaWiki 1.12?===
+
=== ...can't I download MediaWiki 1.12? ===
  
MediaWiki 1.12 is in a development state at present, and has not been packaged into a general release. The code can be [[download from SVN|downloaded from Subversion]] if desired.
+
MediaWiki 1.12 is in a development state at present, and has not been packaged into a general release. The code can be [[Download from SVN|downloaded from Subversion]] if desired.
  
===...doesn't this work? It works on Wikipedia!===
+
=== ...doesn't this work? It works on Wikipedia! ===
  
 
Wikipedia and other Wikimedia web sites use the current version of the code in development; at present, this is MediaWiki 1.12alpha. Coupled with the use of several extensions, this means that functionality between these wikis and your particular setup may differ.
 
Wikipedia and other Wikimedia web sites use the current version of the code in development; at present, this is MediaWiki 1.12alpha. Coupled with the use of several extensions, this means that functionality between these wikis and your particular setup may differ.
  
 
* To obtain the current development code, read [[Important Release Notes#MediaWiki 1.12]]
 
* To obtain the current development code, read [[Important Release Notes#MediaWiki 1.12]]
* To check what version a Wikimedia wiki is running, as well as what extensions are installed, visit the [[Special:Version]] page for that wiki
+
* To check what version a Wikimedia wiki is running, as well as what extensions are installed, visit the [[Especial:Version|Special:Version]] page for that wiki
 +
 
 +
=== ...do I get a '''403 Forbidden''' error after setting permissions on my Fedora system? ===
  
===...do I get a '''403 Forbidden''' error after setting permissions on my Fedora system?===
 
 
Fedora Core enables [http://en.wikipedia.org/wiki/SELinux SELinux] by default. Instructions for setting SELinux permissions for MediaWiki [[SELinux|are available]].
 
Fedora Core enables [http://en.wikipedia.org/wiki/SELinux SELinux] by default. Instructions for setting SELinux permissions for MediaWiki [[SELinux|are available]].
  
===...do I get logged out constantly? ===
+
=== ...do I get logged out constantly? ===
This is probably related to cookies or session data, for example a problem with PHP's session.save_path [http://php.net/manual/en/ref.session.php#ini.session.save-path] setting. See [[m:Help:Logging in#Log in problems|Log in problems]].
+
 
 +
This is probably related to cookies or session data, for example a problem with PHP's session.save_path [http://php.net/manual/en/ref.session.php#ini.session.save-path] setting. See [[M:Help:Logging in#Log in problems|Log in problems]].
  
 
=== ...is it a good idea to keep user accounts? ===
 
=== ...is it a good idea to keep user accounts? ===
Línea 737: Línea 741:
 
[http://lists.wikimedia.org/pipermail/wikitech-l/2007-June/031579.html Rob Church posted the following] regarding this issue on the mediawiki-l mailing list:
 
[http://lists.wikimedia.org/pipermail/wikitech-l/2007-June/031579.html Rob Church posted the following] regarding this issue on the mediawiki-l mailing list:
  
"If the user has made edits, then removing rows from the user table
+
"If the user has made edits, then removing rows from the user table cause theoretical loss of referential integrity. Now, to be honest with you, I can't think of any conditions where this would cause an actual problem; "undefined behaviour" is the phrase we use.
cause theoretical loss of referential integrity. Now, to be honest
 
with you, I can't think of any conditions where this would cause an
 
actual problem; "undefined behaviour" is the phrase we use.
 
  
What I'd suggest doing, to be on the safe side, is running a couple of
+
What I'd suggest doing, to be on the safe side, is running a couple of quick updates against the database:
quick updates against the database:
 
  
:<code>UPDATE revision SET rev_user = 0 WHERE rev_user = <current_user_id></code>
+
:<code>UPDATE revision SET rev_user = 0 WHERE rev_user = &lt;current_user_id&gt;</code>
:<code>UPDATE archive SET ar_user = 0 WHERE ar_user = <current_user_id></code>
+
:<code>UPDATE archive SET ar_user = 0 WHERE ar_user = &lt;current_user_id&gt;</code>
  
What this will do is cause MediaWiki to treat the revisions as having
+
What this will do is cause MediaWiki to treat the revisions as having been made anonymously when generating things like page histories, which should eliminate any problems caused by these routines attempting to check user details from other tables.
been made anonymously when generating things like page histories,
 
which should eliminate any problems caused by these routines
 
attempting to check user details from other tables.
 
  
If the user has caused log entries, i.e. rows in the logging table, or
+
If the user has caused log entries, i.e. rows in the logging table, or uploaded images, then the situation becomes trickier, as you'll have to start mopping up all the rows everywhere and it could become a bit of a mess, so if the user's done anything other than edit, I would strongly recommend just blocking them indefinitely.
uploaded images, then the situation becomes trickier, as you'll have
 
to start mopping up all the rows everywhere and it could become a bit
 
of a mess, so if the user's done anything other than edit, I would
 
strongly recommend just blocking them indefinitely.
 
  
If the username is offensive or undesirable, then you could consider
+
If the username is offensive or undesirable, then you could consider renaming it using the [[Extension:Renameuser|RenameUser]] extension."
renaming it using the [[Extension:Renameuser|RenameUser]] extension."
 
  
 
== Anti-spam ==
 
== Anti-spam ==
  
See '''[[Manual:Combating spam]]''' for an overview of anti-spam measures.  
+
See '''[[Manual:Combating spam]]''' for an overview of anti-spam measures.
  
 
=== Where do I get the spam blacklist from and how do I install it? ===
 
=== Where do I get the spam blacklist from and how do I install it? ===
  
The [[m:Spam blacklist|spam blacklist]] extension can be found in [[Download from SVN|Subversion]]. For installation and configuration instructions, consult the [http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/SpamBlacklist/README?view=markup README] file.
+
The [[M:Spam blacklist|spam blacklist]] extension can be found in [[Download from SVN|Subversion]]. For installation and configuration instructions, consult the [http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/SpamBlacklist/README?view=markup README] file.
  
 
=== How do I use $wgSpamRegex to block more than one string? ===
 
=== How do I use $wgSpamRegex to block more than one string? ===
  
'''$wgSpamRegex''' is a powerful filter for page content. Adding multiple items to the regex, however, can be awkward. Consider this snippet:
+
'''$wgSpamRegex''' is a powerful filter for page content. Adding multiple items to the regex, however, can be awkward. Consider this snippet: &lt;source lang="php"&gt; $wgSpamRegexLines[] = 'display\s*:\s*none'; $wgSpamRegexLines[] = 'overflow:\s*\s*auto'; [...] $wgSpamRegex = '/(' . implode( '|', $wgSpamRegexLines ) . ')/i'; &lt;/source&gt;
<source lang="php">
 
$wgSpamRegexLines[] = 'display\s*:\s*none';
 
$wgSpamRegexLines[] = 'overflow:\s*\s*auto';
 
[...]
 
$wgSpamRegex = '/(' . implode( '|', $wgSpamRegexLines ) . ')/i';
 
</source>
 
  
 
This example code allows convenient addition of additional items to the regex without fiddling about each time. It also demonstrates two popular filters, which block some of the most common spam attacks.
 
This example code allows convenient addition of additional items to the regex without fiddling about each time. It also demonstrates two popular filters, which block some of the most common spam attacks.
  
==Where now?==
+
== Where now? ==
  
===I've found a bug or have a feature request. Where do I post it?===
+
=== I've found a bug or have a feature request. Where do I post it? ===
  
Bugs and feature requests should be posted on [[MediaZilla:|MediaZilla]], our implementation of [[:en:Bugzilla|Bugzilla]]. Please search the database prior to posting, to avoid creating duplicate entries.
+
Bugs and feature requests should be posted on [http://bugzilla.wikipedia.org/ MediaZilla], our implementation of [[En:Bugzilla|Bugzilla]]. Please search the database prior to posting, to avoid creating duplicate entries.
  
===I have a question not answered here. Where do I go next?===
+
=== I have a question not answered here. Where do I go next? ===
  
 
If you've exhausted the FAQ above, please try the following:
 
If you've exhausted the FAQ above, please try the following:
  
*Check the [[Project:Help|other sources of help]] on this site
+
* Check the [[Europarc:Help|other sources of help]] on this site
*[[Special:Search|Search]] the rest of this site
+
* [[Especial:Search|Search]] the rest of this site
*Search our documentation archived on [[m:Main Page|Meta]]
+
* Search our documentation archived on [[M:Main Page|Meta]]
* Useful developer documentation remains on Meta.wikimedia.org in the category [[m:Category:Pages to be exported to MediaWiki.org|Pages to be exported to MediaWiki.org]] until the [[m:Meta:MetaProject to transfer content to MediaWiki.org]] completes
+
* Useful developer documentation remains on Meta.wikimedia.org in the category [[M:Category:Pages to be exported to MediaWiki.org|Pages to be exported to MediaWiki.org]] until the [[M:Meta:MetaProject to transfer content to MediaWiki.org|m:Meta:MetaProject to transfer content to MediaWiki.org]] completes
 
* [[How to become a MediaWiki hacker]]
 
* [[How to become a MediaWiki hacker]]
 
* [[How to debug MediaWiki]]
 
* [[How to debug MediaWiki]]
*Search the web
+
* Search the web
*Post a message at [[Project:Support desk]]
+
* Post a message at [[Europarc:Support desk|Project:Support desk]]
*Email the [http://mail.wikipedia.org/mailman/listinfo/mediawiki-l mediawiki-l mailing list]
+
* Email the [http://mail.wikipedia.org/mailman/listinfo/mediawiki-l mediawiki-l mailing list]
*Ask the [[developers]] in our IRC channel ([[:en:Freenode|Freenode]] network, channel '''[irc://irc.freenode.net/mediawiki #mediawiki]''').
+
* Ask the [[Developers|developers]] in our IRC channel ([[En:Freenode|Freenode]] network, channel '''[irc://irc.freenode.net/mediawiki #mediawiki]''').
 
 
===Recommended reading===
 
*[http://www.catb.org/~esr/faqs/smart-questions.html Asking smart questions]
 
*[http://www.chiark.greenend.org.uk/~sgtatham/bugs.html Effective bug reporting]
 
*[http://www.packtpub.com/Mediawiki/book MediaWiki Book: MediaWiki Administrators' Tutorial Guide.]
 
  
{{Languages|Manual:FAQ}}
+
=== Recommended reading ===
  
[[Category:Manual|{{PAGENAME}}]]
+
* [http://www.catb.org/~esr/faqs/smart-questions.html Asking smart questions]
[[Category:Configure|{{PAGENAME}}]]
+
* [http://www.chiark.greenend.org.uk/~sgtatham/bugs.html Effective bug reporting]
 +
* [http://www.packtpub.com/Mediawiki/book MediaWiki Book: MediaWiki Administrators' Tutorial Guide.]
 +
{{Languages|Manual:FAQ}}</div></div>
 +
[[Category:Ayuda]]

Revisión actual del 19:41 11 jun 2021

Esta página ha sido propuesta para borrado.

La razón especificada es: Documentación copiada de MediaWiki, en inglés y probablemente innecesaria

Installation and configuration

Where do I download MediaWiki?

The latest stable release of MediaWiki can be downloaded from download.wikimedia.org or sourceforge.net. Files are supplied in a .tar.gz archive. MediaWiki can also be obtained direct from our Subversion repository. See also Download

How do I install MediaWiki?

Installing MediaWiki takes between 10 and 30 minutes, and involves uploading/copying files, and running the installer script to configure the software.

Full instructions can be found in the INSTALL file supplied in the distribution archive.

How do I install MediaWiki using a package?

Many Linux distributions provide MediaWiki in a packaged format for that distribution. The MediaWiki development team refers you to your Linux distribution for assistance with installing, configuring or using them. The individual communities & companies who maintain such packages should provide installation instructions.

Can I install more than one wiki on a server using MediaWiki?

It is possible to install more than one wiki on a server provided that:

  • You use a different database for each wiki

OR

  • You use a different database prefix for each wiki (for Postgres, you can achieve a similar effect by using different schemas and users)

For information on these options, see $wgDBname and $wgDBprefix respectively.

For information on setting up a wiki family, see Manual:Wiki family.

For information on an alternative way of setting up more than one wiki using the same server, database and source, see Steve Rumberg's excellent expose and additional comments from users.

Does MediaWiki work with safe_mode enabled?

Yes, but only to a limited degree. See Safe mode.

Does MediaWiki require shell access?

Shell access (SSH access) is not required for installing MediaWiki, but it is highly recommended. Without shell access, it may even be difficult for you to get a backup of your wiki, or to upgrade to a new version. Some maintenance tasks will not be possible at all without shell access.

How do I install extensions?

See Manual:Extensions for information about installing extensions, as well as writing them. See the Extension Matrix and the to find existing extensions.

How do I add extra namespaces?

To add a namespace, modify your LocalSettings.php file, and add namespaces via $wgExtraNamespaces. You can add the following code to add a "Portal" namespace, and its corresponding discussion namespace:

$wgExtraNamespaces = array(100 => "Portal", 101 => "Portal_talk");

Plantilla:Note Be sure to add underscores instead of spaces, such as in Portal_talk. Otherwise, the namespace will not be declared properly!

How do I enable uploading?

File uploads are an often-used feature of MediaWiki, but are disabled by default in all current release versions. To enable them, first make the upload directory (default images) writable by the web server (chmod 777 or allow the Apache user to write to it, etc.) then set $wgEnableUploads to true in LocalSettings.php (i.e. "$wgEnableUploads = true;"). See Manual:Configuring file uploads for more information.

How do I enable embedded math formulas?

MediaWiki allows embedded math formulas via a helper program called texvc that uses LaTeX to render the formulas. See Manual:Math for setup instructions.

How do I purge a cached page?

To purge a cached page, such as when making changes to the navigation bar, add &action=purge to the end of the page's dynamic URL.

e.g. http://www.mediawiki.org/w/index.php?title=Main_Page&action=purge

Note that the URL must be using the active directory name (/w/ by default) rather than the static one (/wiki/ by default). Attempting to append the purge command to a static URL (e.g. http://www.mediawiki.org/wiki/Main_Page&action=purge) will instead take you to a page name containing the purge command at the end (in this case, "Main Page&action=purge").

See also: Manual:Purge, Manual:Parameters_to_index.php

How do I allow uploading of additional formats?

MediaWiki requires that allowed file upload formats are specified using the $wgFileExtensions configuration directive. Usually this directive is situated in LocalSettings.php in the root of your MediaWiki installation.

For example, to allow uploading of PDF files, add the following to LocalSettings.php: <source lang="php"> $wgFileExtensions[] = 'pdf'; </source>

Plantilla:Note The syntax is different to allow uploading of more than one type of file. To do so, use an array as in the example below which will allow uploading of png, gif, jpg, jpeg, pdf, and txt files. <source lang="php"> $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg', 'pdf', 'txt' ); </source>

See Manual:Configuring file uploads for more information.

"File is corrupt or has an invalid extension"

Some users have reported that after adding a file format to the allowed extensions list, an error is encountered. The text of the error is similar to the following:

The file is corrupt or has an incorrect extension. Please check the file and upload again.

Possible solutions:

$wgMimeDetectorCommand = "file --brief --mime";
  • Compile/install the fileinfo PHP extension
    • Fedora - yum install php-pecl-Fileinfo

See Manual:Mime type detection for more information.

Initial user was not created by installer

Sometimes, the installer fails to create the default user, or the user table is lost for some reason. There are a couple of options for solving this:

maintenance/createAndPromote.php

  • Make sure AdminSettings.php is set up (see AdminSettings.sample)
  • Execute maintenance/createAndPromote.php from the shell

This will create a new user and promote them to an administrator. For help, run the script with the parameter --help.

Alter the database

  • Register a new account using the regular method (Special:Userlogin).
  • Check the user ID in Special:Preferences.
  • Execute the following SQL statement against the database:
    • For MediaWiki 1.5 and later:
      INSERT INTO user_groups ( ug_user, ug_group ) VALUES ( <id>, 'bureaucrat' ), ( <id>, 'sysop' );
    • For MediaWiki 1.4:
      UPDATE user_rights SET ur_rights = 'sysop,bureaucrat' WHERE ur_user = <id>;
    • For MediaWiki 1.3 and older:
      UPDATE user SET user_rights = 'sysop,bureaucrat' WHERE user_id = <id>;

<id> above should be replaced with the appropriate user ID which you can see on the user's preference page

How do I reset a password?

You can use the maintenance/changePassword.php maintenance script to reset a user's password.

You have to run the script from the command line. In other words, log into the server where your wiki is installed, then open a command prompt. Go to the installation directory, then go to the maintenance subdirectory. Run the following command:

php changePassword.php --user=someuser --password=somepass

Where obviously "somepass" is changed to the password you want to set and "someuser" is changed to the user name as it is listed in the table "user".

You can also use the old way, by modifying the database directly. Assuming that $wgPasswordSalt is set to true (the default), you can use the following SQL query for MySQL:

<source lang="sql">

UPDATE user SET user_password = MD5(CONCAT(user_id, '-', 
 MD5('somepass'))) WHERE user_name = 'someuser';

</source> Where obviously "somepass" is changed to the password you want to set and "someuser" is changed to the user name as it is listed in the table "user".

Plantilla:Note The user_id in the CONCAT string is a column name and is not meant to be replaced with 'someuser'

Plantilla:Note If you obtain a 'dbname.user table does not exist' error, please check the LocalSettings.php file, and double-check the value for the $wgDBprefix variable. If that variable is not empty, try repeating the command, replacing $wgDBPrefix_user instead of user in the UPDATE clause of the SQL statement.

If using PostGreSQL, use this query instead: <source lang="sql">

UPDATE mwuser SET user_password =
 md5(user_id || '-' || md5('somepass')) WHERE user_name='someuser';

</source>

Yout can also try the Extension:Password Reset

How can I create Interwiki Links in my Wiki?

DB Expert Answer

If the external wiki is Wikipedia, and you wish to use the prefix "wp" to link to it, run this SQL statement to modify the Interwiki table in your database: <source lang="sql">INSERT INTO interwiki (iw_prefix, iw_url, iw_local, iw_trans) VALUES ('wp', 'http://en.wikipedia.org/wiki/$1', '0', '0');</source> The $1 indicates the article name on the external wiki.

Typical-User Answer

In a graphical SQL program (i.e. PhpMyAdmin), go to the interwiki table. Choose the option to insert (a row). In the field, enter your desired interwiki prefix. In the field, enter the Base URL of the external wiki plus the text "$1" as mentioned in the DB Expert Answer above. and have default values of zero (0). You may leave them as zero.

For more information, see Help:Interwiki linking

Easy Answer

Install the Special:Interwiki extension. You can then add and remove interwiki entries through the Special:Interwiki special page.

How do I make my base URLs shorter? (i.e. /wiki/Article_Name as opposed to /w/index.php?title=Article_Name)

See Manual:Short URL.

Is downloading and using all of MediaWiki.org free?

Yes, it is free in the sense of Free software. See Project:Copyrights for licensing issues regarding the written content of this site.

How do I administrate/manage my users?

See Manual:User rights and Manual:User rights management.

Upgrading

Generic instructions on the upgrade process can be found in the UPGRADE file supplied with the software. See also Manual:Upgrading.

Changing the interface

How do I change the logo?

The logo that appears in the top left of each page is determined by the $wgLogo configuration setting in the LocalSettings.php file.

To change this you simply need to change the value of $wgLogo to point to the URL of your own logo image. You can upload a file via the wiki and use that address (which allows it to be replaced easily, so you may want to protect the page if you use this method) or use an image uploaded to your server via other means.

Plantilla:Caution It is possible to simply overwrite the default logo installed with MediaWiki, but this is strongly advised against, as an upgrade may end up overwriting it or change the default location of this file.

Tip: The logo image should be 135 pixels square.

How do I customize the logo in the top left corner? Can I?

The logo is a portlet block without a pBody section. It is identified by the p-logo id. The background image is specified by the wgLogo variable, which is defined in /includes/DefaultSettings.php. This location is relative to the web server root and not the system root. Redefine this in /LocalSettings.php to change the image. If set wrong there will be no image on the page; check your web server error log and adjust accordingly. However the size of the p-logo will need to be big enough for the logo if it is not to be clipped. This is set in the stylesheet (Main.css in monobook), under the p-logo style, the default setting is:

<source lang="css">

  1. p-logo {
z-index: 3;
 position:absolute; /*needed to use z-index */
 top: 0;
 left: 0;
 height: 155px;
 width: 12em;
 overflow: visible;

} </source>

How do I customize the URL of the logo in the top left corner when you click it?

By default, clicking the logo takes you to the main page. If you want to change which page is the main page, edit MediaWiki:Mainpage. Or to make the link go to any arbitrary URL, for Monobook skin, edit Monobook.php and find and replace <?php echo htmlspecialchars($this->data['nav_urls']['mainpage']['href'])?> with the URL of your choice and replace <?php $this->msg('mainpage') ?> with the desired link title.

Note that a tag is on top of the logo so if you are trying to reduce the size of the logo's portlet you will also need to change the #p-logo a and #p-logo a:hover rules. The default setting for these is: <source lang="css">

  1. p-logo a,
  2. p-logo a:hover {
display: block;
 height: 200px;
 width: 12.2em;
 background-repeat: no-repeat;
 background-position: 35% 50% !important;
 text-decoration: none;

} </source>

This simple customization will re-define the size of all of them at once... <source lang="css">

  1. p-logo,
  2. p-logo a,
  3. p-logo a:hover {
height: 75px;

} </source> There is one more rule controlling the amount of space between the logo and first portlet in the side column - the padding on the top of #column-one. By default this is: <source lang="css">

  1. column-one { padding-top: 160px; }

</source> If you want to remove the logo completely, comment out the wgLogo variable. Then set the column-one padding to a small value, such as 21: <source lang="css">

  1. column-one { padding-top: 21px; }

</source>

You don't have to go edit the css file directly. You can go to <Your Wiki URL>?title=MediaWiki:Monobook.css. Hit edit and make your changes there. This has preference over the monobook main css.

How do I change the icon in the browser's address line (favicon)?

  • Simply replace the favicon.ico image file at the root of your wiki with the .ico image file you want.
  • Alternatively edit the $wgFavicon setting in LocalSettings.php and add $wgFavicon = "$wgScriptPath/path/to/your/favicon.ico";

Rewrite Rule

If you are using a rewrite rule in .htaccess to remove "index.php" from the URL, you will also need to add an exception for .ico files. Simply add the following rule to your .htaccess:

RewriteRule .*\.ico$ - [L]

This rule must appear before the index.php rule.

Case Sensitivity

When uploading the favicon file, be sure the filename is in lowercase. (That is, "favicon.ico", not "Favicon.ico".) A lot of servers (e.g., those on UNIX-like operating systems) will not be able to find the file unless its name is in lowercase.

How do I customize the navigation bar?

The contents of the navigation bar which appears to the left of each page using the Monobook skin are determined by the MediaWiki:Sidebar page. For information on customising these, please see Manual:Navigation bar.

How do I put a text message (sitenotice) on every page?

Put a text in the MediaWiki:Sitenotice page. It will be displayed on top of every article page.

How do I change the main page?

By default, MediaWiki looks for a page with the title Main Page and serves this as the default page. This can be changed by altering the contents of MediaWiki:Mainpage to point to a different title. If this does not change the 'Main Page' link included on the sidebar at install time, edit MediaWiki:Sidebar.

How do I hide the main page title?

MediaWiki does not have a built-in option to hide the main page title (see bug 6129). Instead you must use JavaScript or CSS.

Pre-1.9

Before MediaWiki 1.9, you will need to use JavaScript. Some code that may or may not work is as follows (replace "Main Page" with the name of your main page if it differs):

<source lang="javascript"> var isMainPage = (document.title.substr(0, document.title.lastIndexOf(" - ")) == "Main Page"); var isDiff = (document.location.search &&

(document.location.search.indexOf("diff=") != -1 ||
 document.location.search.indexOf("oldid=") != -1
 )
 );

if (isMainPage && !isDiff) {

document.write('<style type="text/css">/*<![CDATA[*/ h1.firstHeading { display: none !important; } /*]]>*/</style>');

} </source>

Alternatively, you can manually apply the patch from r17119 to your copy of MediaWiki and use the solution for 1.9.

1.9 and above

In 1.9 and above, you can rely on CSS to hide it. Replace "Main_Page" with the appropriate page name, here with spaces replaced by underscores.

<source lang="css"> body.page-Main_Page h1.firstHeading { display:none; } </source>

If that doesn't work, look at the HTML source code to find the correct class to replace "page-Main_Page" with:

<source lang="html4strict"> <body class="mediawiki ns-0 ltr page-Some_title"> </source>

If no such class exists, then you cannot use this feature. You may be using a custom or outdated skin.

Another option is to #REDIRECT from Main_Page to Our_Main_Page.

How can I hide the table of contents?

The table of contents (TOC) is automatically shown once there are four or more headings in the article. The are multiple ways to hide it.

For one page

Place the magic word __NOTOC__ into the page markup.

For all pages

Edit the CSS files; locate the style for the table of contents and add display: none; to the definition.

Per user

Users can also opt to have the table of contents hidden. This is a user preference, set in Special:Preferences.

How do I change the interface text?

Interface text is altered using the MediaWiki namespace. For each deviation from the default in the site language there is a page MediaWiki:Englishmessagename, and for each deviation from the default in each other language a page MediaWiki:Englishmessagename/languagecode. (Since release 1.9 there are no pages for messages equal to the default.). On creation of a page the edit box autofills with the default. When creating a page to override the default it is useful to first save the default version, to allow diffs with it. See also meta:Help:System messages.

How do I change the interface language?

To change the default interface language, alter the value of $wgLanguageCode in LocalSettings.php, e.g.

$wgLanguageCode = "fr";

How can I prevent editing by anonymous users?

The recommended method is by changing the value of the $wgGroupPermissions configuration option. Edit LocalSettings.php and add the line:

<source lang="php">$wgGroupPermissions['*']['edit'] = false;</source>

For more information on using this option, see the Preventing access page and Manual:User rights.

How do I remove the article/edit etc tabs for users who are not logged in?

Edit [[MediaWiki:Monobook.css]] on your wiki, and add this:

#ca-edit { display: none; }

See the page source for the various #ca-* ids used in the content tabs.

Note: this will only work for MonoBook (the default skin), and doesn't actually stop people editing.

How do I add/remove tabs in general?

To (for example) remove the talk tab and then add one that always goes to the main page you would save this code in (for example) extensions/AR-Tabs.php: <source lang="php">

$wgHooks['SkinTemplateContentActions'][] = 'ReplaceTabs';
function ReplaceTabs ($content_actions) { 
 unset( $content_actions['talk'] ); //only this to remove an action
 $maintitle = Title::newFromText(wfMsg('mainpage') );
 $main_action['main'] = array(
 'class' => false or 'selected', //if the tab should be highlighted
 'text' => wfMsg('sitetitle'), //what the tab says
 'href' => $maintitle->getFullURL(), //where it links to
 );
 $content_actions = array_merge( $main_action, $content_actions); //add a new action
 return true;
}

</source> and then add <source lang="php">require_once("extensions/AR-Tabs.php");</source> to the bottom of LocalSettings.php

How do I hide the section edit links for users who are not logged in?

  1. The recommended method is by changing the value of the $wgDefaultUserOptions configuration option.
    Edit LocalSettings.php and add the line:
    <source lang="php">$wgDefaultUserOptions ['editsection'] = false;</source>
  2. Alternatively you could manually edit each skin (e.g. MonoBook.php) and add this before </head>:

<source lang="php"> <?php if(!$this->data['loggedin']) { ?> <style> .editsection { display: none; } </style> <?php } ?> </source>

If you want to hide the links for all users including logged in users, instead edit monobook/main.css and add:
<source lang="css">.editsection { display: none; }</source>
Also see

How do I remove the "Talk for this IP" link at the top right when $wgDisableAnonTalk is true

Set $wgShowIPinHeader to false

How do I remove the "Create an Account or Login" link at the top right of the screen?

In Monobook.php change this statement: <source lang="php">

foreach($this->data['personal_urls'] as $key => $item) {

</source> to: <source lang="php">

foreach($this->data['personal_urls'] as $key => $item) if($this->data['loggedin']==1) {

</source>

How do I change the footer?

To add or remove items from the footer on your MediaWiki page, you must edit the skin.

For example: if you go in to MonoBook.php (located by default in the "Skins" folder) you will find the following code:

<source lang="php">

$footerlinks = array(
 'lastmod', 'viewcount', 'numberofwatchingusers', 'credits', 'copyright',
 'privacy', 'about', 'disclaimer', 'tagline',
 );

</source>

In the above you can simply add and remove items from the footer that you wish to appear in your footer. Remember the changes may not appear immediatly because of MediaWiki caches.

You can also customize the individual items by modifying certain pages or parameters:

See also: Footer, Manual:Skinning

Line breaks in footer

For line breaks in the footer, search for Content is available under in the MessagesEn.php and then put line breaks before and after so that it looks like '<br />Content is available under $1.<br />', It is valid XHTML 1.0 Transitional. NOTE: It would probably be better to just edit the system message (see Special pages) to add <br> before and after the message.

How can I edit / remove the Powered by MediaWiki image in the footer?

You can hide the Powered by MediaWiki image by adding the following to your wiki's MediaWiki:Common.css: <source lang="css">

  1. f-poweredbyico { display: none; }

</source>

If you want to remove it completely, you could alter /skins/MonoBook.php, which contains the following code that makes the Powered by MediaWiki image appear in the footer: <source lang="php"> <?php if($this->data['poweredbyico']) { ?>

<?php $this->html('poweredbyico') ?>

</source> If you would like to remove this image completely, or edit the image, you must locate and edit poweredbyico. It is located in skins/common/images/ and the image is called poweredby_mediawiki_88x31.png.

If you're happy with the logo (or not) and simply want to change the destination link, the code is in getPoweredBy() function of includes\Skin.php. Just change the line $img = '<a href="http://www.mediawiki.org/"><img src="'.$url.'" alt="Powered by MediaWiki" /></a>'; to whatever.

How can I change what the <title> of each page is? Where do I make changes?

Most of the text that you want to change, can be found in the namespace of MediaWiki.

In order to change titles, texts, announcements and the such, go to Special:Allmessages, where you will see the text associated with the pages you wish to change. (As far as I can tell, you need to log in as an administrator (like the one you made when you installed) to edit the protected entries in the MediaWiki namespace.)

If you want to change the title in your browser, you need to edit MediaWiki:pagetitle. Go there and edit it just like you would any other page in your Wiki.

In recent versions of MediaWiki, MediaWiki:Pagetitle is $1 - {{SITENAME}} by default. If {{SITENAME}} is producing the wrong text for you, you need to set $wgSitename in your LocalSettings.php.

If $wgSitename is correct in LocalSettings.php but {{SITENAME}} is still wrong, it may be that you're using a user-contributed language file which incorrectly sets $wgSitename to a transliteration of "Wikipedia". Edit the language file to correct this. For example, the hebrew language file is at languages/LanguageHe.php in your wiki directory.

Don't forget to clear your browser cache after you fix it.

How do I make external links open in a new window?

See Opening external links in a new window.

How can I suppress MediaWiki from formatting urls, tags, etc?

svn co <nowiki>http://somwhere.in.the.net/myproject/</nowiki>

svn co http://somewhere.in.the.net/myproject/

How can I force users to preview before they save?

To curb cursory negligence it may be desirable to disable the save button on the edit page, so users must preview first.

Here's how to reach that goal by only showing the save button on the preview page:

In /includes/EditPage.php, find (line number 1238 in MediaWiki 1.9.0, 1158 in MediaWiki 1.8.2): <source lang="php">

"

;
{$buttons['save']}
 {$buttons['preview']}

</source> and replace these three lines with the following seven <source lang="php">

"
");
if ( $this->formtype == 'preview') {
 $wgOut->addHTML(
"{$buttons['save']}");
 }
 $wgOut->addHTML(
"{$buttons['preview']}

</source>

See also: Manual:Force preview.

How do I add more buttons on the edit page?

For adding more toolbar buttons above the edit field, you can use JavaScript code to register them in mwCustomEditButtons in your MediaWiki:common.js. For example, a button for large text:

<source lang="javascript"> var button = {

"imageFile": "images/5/56/Button_big.png", //image to be shown on the button (may be a full URL too), 22x22 pixels
 "speedTip": "big text", //text shown in a tooltip when hovering the mouse over the button
 "tagOpen": "", //the text to use to mark the beginning of the block
 "tagClose": "", //the text to use to mark the end of the block (if any)
 "sampleText": "big text" //the sample text to place inside the block

}; mwCustomEditButtons.push(button); </source>

How can I get more special characters or tags clickable on the edit page?

For adding more selectable special characters, etc, below the edit field, See Extension:CharInsert

Basic usage

How do I edit a page?

To edit a page, simply click the edit link that appears on each page. Using the default MonoBook skin, this is in the form of a tab at the top of the page. A form will appear, containing the existing markup. When you have finished making modifications, click the Save button to commit your changes.

See also: Plantilla:Meta

How do I create a new page?

There are several paths to creating a new page:

  • Create a link to the page on another page, then click on the red link which appears
  • Browse to the intended location of the page, e.g. http://www.foowiki.org/index.php?title=New_page and click on the edit link.

On some wikis, a failed search for a page will contain a link which allows you to edit that page.

See Help:Starting a new page

How do I delete an old version of a page?

Old versions of page data are retained in the database and can be accessed via the page history features. This is useful for reviewing changes and correcting or reverting undesirable ones, but in some cases, administrators might want to make this information unavailable, for legal reasons, or to reduce the size of the database.

  • Administrators can delete an old revision of a page by deleting the page, and then selectively undeleting revisions to be kept
  • The Oversight extension (also known as HideRevision) can be used to move harmful revisions out of page histories
  • The maintenance/deleteOldRevisions.php maintenance script can mass-delete all old revisions of pages and their associated text records.
  • See also: Manual:Removing embarrassment?.

Are there any editing tutorials available?

There are several editing tutorials available, mostly on Wikimedia sister projects, such as Wikipedia. There are also markup references, etc. available on Meta.

How do I view the printable form of a page?

MediaWiki includes stylesheets which automatically style a page appropriately when it is printed; using the print or print preview function within your browser ought to render the page in a printable form.

You can also view this printable form using the printable version link in the toolbox.

Wiki Importing

Importing from other types of wiki

Note: The following is directly copied from old meta FAQ. It might need to be corrected.

There is some documentation about importing in the UPGRADE file distributed with MediaWiki.

To follow on from those, this is how at least one individual imported pages from usemod to MediaWiki:

Because MediaWiki does not automatically link to CamelCase style links, you will need to add brackets [[ ]] to all your links. You can do this with the following:

First, obtain ImportStage1.txt (or whatever you want to call it) from the importUseModWiki.php script ( use > to pipe the output to a file )

Second, do

sed '/Importing/!s/\ [A-Z]\w*[a-z]\w*[A-Z]\w*[a-zA-Z]/\ \[\[&\]\] /g'
ImportStage1.txt > ImportStage2.txt

This should create proper links in place of your CamelCase links.

This doesn't work so well for SubPage links - someone care to fix?

Then,

sed 's/upload\:\w*\.\w*/http\:\/\/aberwiki\.org\/uploads\/& /g'
ImportStage2.txt > ImportStage3.txt

This fixes your upload links. Change the replace text so it fills in your url such as http://www.yourwiki.org/uploads/filename

You are now ready to import ImportStage3.txt into your database with a command such as

mysql -u<mysqluser> -p<yourpass> <db name> < ImportStage3.txt

Note: If your importUseModWiki.php outputs an XML file instead of SQL statements, this probably means you have a rather new version of MediaWiki. In such a case, you case import the XML file -- see Importing a Wikipedia database dump into MediaWiki, towards the bottom of the page ('Import XML'). Don't forget to rebuild all the tables -- that page also explains how to do that.

Importing from other types of files

Here are some info on importing from other types of files:

Mediawiki auto importing script

Taken from wiki_import - mediawiki auto import script:


Description

The script is designed to import a whole folder of files into mediawiki, with the folder directory tree mapped as wiki category hierarchy.

Features

  • economic, build wiki site from existing knowledge base collection without "double-entry"
  • persistent, map folder directory tree as wiki category hierarchy
  • sophisticated, import/handle all well-known file types automatically
  • complete, cover every applicable scenario, even the case when you need to control access to individual wiki pages
  • versatile, highly customizable

Quick Help

wiki_import.sh $ $Revision: 1.1 $

mediawiki automatic file import script

Usage: wiki_import.sh [OPTIONS]...

The script is designed to import a whole folder of files into mediawiki, with the folder directory tree mapped as wiki category hierarchy.

The specification of the file-to-import is passed from standard input.

Options:

-s, --sect=n the root category section of the wiki
 of the imported article (mandatory)
 -1, --header include standard header (category hierarchy path & notice)
 -l, --link link to actual file on the web site
 -f, --footer include standard footer (article category)
 -R, --res[=p] add restricted tag in the footer
 as '{{<Res Param|Root Category> Restricted}}' 
 (default=`$_opt_sect')

Configuration Options:

-p, --php=fn mediawiki import php script specification
 -r, --root=n the root category name for the whole wiki site
 -m, --max=n max_allowed_packet for mysqld to import
 -u, --user=n wiki user used for the import
 -a, --arch=p the root url that linked-to archive files based on

Examples:

echo ./path/to/file.ext | wiki_import.sh -1 -l -f -s 'Customer Support' -R 


For the rest of details, check out wiki_import.

Customising further

How can I allow use of HTML tags?

See Manual:$wgRawHtml as well as Manual:$wgGroupPermissions and Manual:Preventing access.

Plantilla:Caution This can be easily abused to attack users

See Extension:SecureHTML and Extension:HTMLets for ways to make this safe(er).

How can I allow uploading of HTML files?

See Manual:Allowing HTML Uploads.

Plantilla:Caution This can be easily abused to attack users

Why...?

...is the Help namespace empty?

We don't currently have a clean, internationalised set of help pages under a free license. A few developers are hoping to make this possible; however, the Help namespace currently ships in a blank state. You are free to add your own help pages, copy the Public Domain help pages or copy certain of the items from Meta, e.g. the user guide or MediaWiki Handbook, these two collections being free to use under the GNU Free Documentation License.

...are some of my images not showing up after an upgrade?

Several users have reported that, following an upgrade or a moving of their wiki, several images fail to be shown inline. The files exist, and the image description pages show a MIME type of unknown / unknown and, in some cases, a warning about potentially dangerous files.

To fix this, run the maintenance/rebuildImages.php script from the command line. This will set MIME information for each file in the database.

...are all PNG files not being turned into thumbnails?

After upgrading to a more recent version of PHP, it is possible a different MimeMagic.php function is being used to detect file MIME types, particularly the built-in PHP function mime_content_type, which fails to detect PNG files. Search the web for mime_content_type png for information on fixing this bug at the PHP level, possibly by editing your magic.mime file.

See here for more info.

...is a search for a short keyword giving no hits?

By default, MediaWiki uses MyISAM's fulltext matching functionality to allow searching page content. The default settings for this mean that words of less than four characters won't be indexed, so results won't be returned for those queries.

To alter this behaviour, MySQL needs to be reconfigured to index shorter terms, and MediaWiki's search index table needs to be repaired, to rebuild the indices.

...can't I download MediaWiki 1.12?

MediaWiki 1.12 is in a development state at present, and has not been packaged into a general release. The code can be downloaded from Subversion if desired.

...doesn't this work? It works on Wikipedia!

Wikipedia and other Wikimedia web sites use the current version of the code in development; at present, this is MediaWiki 1.12alpha. Coupled with the use of several extensions, this means that functionality between these wikis and your particular setup may differ.

  • To obtain the current development code, read Important Release Notes
  • To check what version a Wikimedia wiki is running, as well as what extensions are installed, visit the Special:Version page for that wiki

...do I get a 403 Forbidden error after setting permissions on my Fedora system?

Fedora Core enables SELinux by default. Instructions for setting SELinux permissions for MediaWiki are available.

...do I get logged out constantly?

This is probably related to cookies or session data, for example a problem with PHP's session.save_path [1] setting. See .

...is it a good idea to keep user accounts?

At many times you just want to remove a user account out of the wiki either because it belonged to a spammer account or you just feel like it. The appropriate choice is to block the account or rename it if needed. Here is why:

Do I just remove his row from the User table?

Rob Church posted the following regarding this issue on the mediawiki-l mailing list:

"If the user has made edits, then removing rows from the user table cause theoretical loss of referential integrity. Now, to be honest with you, I can't think of any conditions where this would cause an actual problem; "undefined behaviour" is the phrase we use.

What I'd suggest doing, to be on the safe side, is running a couple of quick updates against the database:

UPDATE revision SET rev_user = 0 WHERE rev_user = <current_user_id>
UPDATE archive SET ar_user = 0 WHERE ar_user = <current_user_id>

What this will do is cause MediaWiki to treat the revisions as having been made anonymously when generating things like page histories, which should eliminate any problems caused by these routines attempting to check user details from other tables.

If the user has caused log entries, i.e. rows in the logging table, or uploaded images, then the situation becomes trickier, as you'll have to start mopping up all the rows everywhere and it could become a bit of a mess, so if the user's done anything other than edit, I would strongly recommend just blocking them indefinitely.

If the username is offensive or undesirable, then you could consider renaming it using the RenameUser extension."

Anti-spam

See Manual:Combating spam for an overview of anti-spam measures.

Where do I get the spam blacklist from and how do I install it?

The spam blacklist extension can be found in Subversion. For installation and configuration instructions, consult the README file.

How do I use $wgSpamRegex to block more than one string?

$wgSpamRegex is a powerful filter for page content. Adding multiple items to the regex, however, can be awkward. Consider this snippet: <source lang="php"> $wgSpamRegexLines[] = 'display\s*:\s*none'; $wgSpamRegexLines[] = 'overflow:\s*\s*auto'; [...] $wgSpamRegex = '/(' . implode( '|', $wgSpamRegexLines ) . ')/i'; </source>

This example code allows convenient addition of additional items to the regex without fiddling about each time. It also demonstrates two popular filters, which block some of the most common spam attacks.

Where now?

I've found a bug or have a feature request. Where do I post it?

Bugs and feature requests should be posted on MediaZilla, our implementation of Bugzilla. Please search the database prior to posting, to avoid creating duplicate entries.

I have a question not answered here. Where do I go next?

If you've exhausted the FAQ above, please try the following:

Recommended reading

Plantilla:Languages