SonicWikiPersos
JeuxMegadrive
MegaCD32XSaturnDreamcast/GCGame Boy AdvanceMultiplateformesDessins animés |
Once you have PmWiki up and running on your site (see PmWiki.Installation), you may want to begin customizing PmWiki for your particular needs. Most PmWiki customizations are performed in a file called local/config.php. When you first install PmWiki, the local/config.php file will not exist and so you'll have to create one if you want to perform any local customizations. You can either create config.php from scratch following the instructions below, or you can copy the sample-config.php file (in the same directory as pmwiki.php) to local/config.php and use it as a starting point. Here is a very simple config.php file: <?php $WikiTitle = "MyNewWiki"; $PageLogoUrl = "http://www.example.com/mylogo.gif"; ?> Note that config.php should always begin with The config.php file above is setting the value of two PHP variables used by PmWiki. The After you've set up an initial config.php file, you can then begin to look at other LocalCustomizations you may wish to make to your wiki site. You will also want to visit the PmWiki Cookbook which provides a lot of customizations you may wish to try. Don't forget to join a PmWiki mailing list, where you can email other WikiAdministrators for help on customizing PmWiki and participate in discussions about PmWiki improvements. And, once you have your site operational, be sure to add it to PmWiki:PmWikiUsers so others will know about it! << Installation | PmWiki.DocumentationIndex | Local customizations >> |