| 
        
         PmWiki / 
          WikiFarmsAdvancedadministrators (advanced) Once you have a working WikiFarm there are many additional features you can add. This page describes some of them briefly and provides links to more detailed pages. This page is currently just a stub, and authors are encouraged to add appropriate content. Existing pages that might belong here and could use a short explanation: 
 administrators (advanced) The WikiFarm page describes only one way of configuring a wiki farm. There is no "right way" to set up a farm. Every scheme has its own advantages and disadvantages. Here are some examples: 
 Answers from the pmwiki-users list Is there a way to get the  Yes, of course. The following are always true: 
## load from local wiki
include_once('cookbook/recipe.php');
## load from farm wiki
include_once("$FarmD/cookbook/recipe.php");
If you want to include a recipe from the farm cookbook only if it's not in the local cookbook, you can do: 
if (file_exists('cookbook/recipe.php'))
    include_once('cookbook/recipe.php');
else
    include_once("$FarmD/cookbook/recipe.php");
Pm  I would like to take advantage of 2.1.15   Easy...near the end of  
## disable PmWiki's local/config
$EnableLocalConfig = 0;
## explicitly include wikifield's local/config.php
include_once('local/config.php');
## change $LocalDir for the per-group/per-page customizations
## (they will appear in /soft/pmwiki/local/Group.PageName.php)
$LocalDir = '/soft/pmwiki/local';
Categories: WikiFarms
 
 This page may have a more recent version on pmwiki.org: PmWiki:WikiFarmsAdvanced, and a talk page: PmWiki:WikiFarmsAdvanced-Talk.  |