OK (noting I am using <a href="http://pmwiki.org/wiki/Cookbook/PerGroupSubDirectories">http://pmwiki.org/wiki/Cookbook/PerGroupSubDirectories</a>)<div><br></div><div>here is what I have, and it basically works</div><div><br>
</div><div>In config.php I have (for both websites)</div><div><br></div><div><div>  $WikiDir = new PageStore(&#39;wiki.d/$Group/$FullName&#39;); # per group subdirectories</div><div>  $WikiLibDirs = array(</div><div>     &amp;$WikiDir,</div>
<div>     new PageStore(&#39;/home/tahi/public_html/pmwiki/wikishared.d/$Group/$FullName&#39;, 0),</div><div>     new PageStore(&#39;$FarmD/wikilib.d/$FullName&#39;));</div><div><br></div><div>This lets the shared pages to be read.</div>
<div><br></div><div>In the SharedGroup.php I have (for both sites)</div><div><br></div><div><div>## only alter the directories when a page is posted in this group</div><div>if (@$_REQUEST[&#39;action&#39;]==&#39;edit&#39;</div>
<div> &amp;&amp; preg_grep(&#39;/^post/&#39;, array_keys($_REQUEST) ) ) {</div><div>  $LockFile = &quot;/home/tahi/public_html/pmwiki/wikishared.d/.flock&quot;;</div><div>  $WikiDir = new PageStore(&#39;/home/tahi/public_html/pmwiki/wikishared.d/$Group/$FullName&#39;, 1); # writeable shared group</div>
<div>  $WikiLibDirs = array(  &amp;$WikiDir,</div><div>    new PageStore(&#39;wiki.d/$Group/$FullName&#39;), # per group subdirectories</div><div>    new PageStore(&#39;$FarmD/wikilib.d/$Group/$FullName&#39;)  );</div><div>
}</div><div><br></div><div>This works fine except when I do &quot;save and edit&quot;</div><div>Then I get the error</div><div><span class="Apple-style-span" style="font-family: &#39;Times New Roman&#39;; font-size: medium; "><h3>
PmWiki can&#39;t process your request</h3><p class="vspace">?unable to retrieve edit form Site.EditForm</p><p class="vspace">although the page is saved successfully.</p><p class="vspace"><br></p><p class="vspace">Question: why is Site.EditForm not found?</p>
<p class="vspace"><br></p><p class="vspace">thanks in advance</p><p class="vspace"><br></p><p class="vspace">Simon</p><p class="vspace"><br></p><p class="vspace"><br></p></span></div></div></div><div><br></div>