Hauptseite: Unterschied zwischen den Versionen
Aus Wiki_2020
Wezi (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Wezi (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 1: | Zeile 1: | ||
==Inhalt== | ==Inhalt== | ||
* [[PIC]] - alles zu PIC-Microcontrollern | * [[PIC]] - alles zu PIC-Microcontrollern | ||
* [[SD-Card Recovery]] - Daten von unlesbarer SD Card wiederherstellen | |||
Version vom 18. Oktober 2013, 19:23 Uhr
Inhalt
- PIC - alles zu PIC-Microcontrollern
- SD-Card Recovery - Daten von unlesbarer SD Card wiederherstellen
Links
- Liste der Konfigurationsvariablen
- MediaWiki-FAQ
- Mailingliste neuer MediaWiki-Versionen
- Lokalisiere MediaWiki für deine Sprache
Hilfe zur Benutzung und Konfiguration der Wiki-Software findest du im Benutzerhandbuch.
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:
<source lang="php"> define( "NS_PORTAL", 100 ); define( "NS_PORTAL_TALK", 101 ); $wgExtraNamespaces[NS_PORTAL] = "Portal"; $wgExtraNamespaces[NS_PORTAL_TALK] = "Portal_talk"; </source>