<html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">I just saw something not "correct" in my explanation, so I am rewriting : </span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">I am still trying to set up wiki farms .I have tried to follow the instructions @ </span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">http://www.pmwiki.org/wiki/Cookbook/WikiFarmStepByStep .</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">I have created 2 fields, field1 and field2. For each of theese fields I </span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">have created an .htpassword file and have set a skin ( pmwiki for field1 and </span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">triad for field2 ) .</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">Now, field2 seems ok, but field1 doesn't show correctly. In addition to this, the two </span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">fields seem to share the variables : if I login to field2 I see I am logged </span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">in also in field1 even if the user i log in in field2 doesn't exists </span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">in .htpassword file of field1.</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">You can see the site @ fermasoft.homeunix.net/field2 & </span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">fermasoft.homeunix.net/field1 .</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">The config files are : </span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;font-weight:600;color:#000000">farmconfig.php</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff"><?php if (!defined('PmWiki')) exit();</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff"> $FarmPubDirUrl = 'http://fermasoft.homeunix.net/pmwiki/pub';</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff"> $Skin = 'pmwiki';</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff"> $WikiTitle = 'My Farm';</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff"># include_once('local/config.php');</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">?></span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;font-weight:600;color:#000000">field1 config.php</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff"><?php if (!defined('PmWiki')) exit();</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$WikiTitle = 'PmWiki test box as a field of a wiki farm';</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$EnablePathInfo = 1;</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$Skin = 'pmwiki';</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$DefaultPasswords['admin'] = crypt('secret');</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$DefaultPasswords['edit'] = 'id:*';</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$EnableGUIButtons = 1;</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$EnableUpload = 1;</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$EnablePageListProtect = 1;</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$AuthUser['htpasswd'] = 'local/.htpasswd';</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">include_once('scripts/authuser.php');</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">include_once("$FarmD/scripts/author.php");</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">if($AuthId && !@$_COOKIE[$AuthorCookie]) {</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff"> $Author = $AuthId; setcookie($AuthorCookie,</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff"> $Author, $AuthorCookieExpires, $AuthorCookieDir); }</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">include_once('scripts/NewPage.php');</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">include_once('scripts/newpageform.php');</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">include_once("scripts/newpageboxplus.php");</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">include_once('cookbook/newCategory.php');</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;font-weight:600;color:#000000">field2 config.php</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">-sh-3.00$ cat config.php</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff"><?php if (!defined('PmWiki')) exit();</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$WikiTitle = 'PmWiki test box as a field of a wiki farm';</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$EnablePathInfo = 1;</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$Skin = 'triad';</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$DefaultPasswords['admin'] = crypt('secret');</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$DefaultPasswords['edit'] = 'id:*';</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$EnableGUIButtons = 1;</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$EnableUpload = 1;</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$EnablePageListProtect = 1;</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">$AuthUser['htpasswd'] = 'local/.htpasswd';</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">include_once('scripts/authuser.php');</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">include_once("$FarmD/scripts/author.php");</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">if($AuthId && !@$_COOKIE[$AuthorCookie]) {</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff"> $Author = $AuthId; setcookie($AuthorCookie,</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff"> $Author, $AuthorCookieExpires, $AuthorCookieDir); }</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">include_once('scripts/NewPage.php');</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">include_once('scripts/newpageform.php');</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">include_once("scripts/newpageboxplus.php");</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#1a05ff">include_once('cookbook/newCategory.php');</span></p>
<p></p>
<p></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">I really have no clue on what's going on. Can somebody point me somewhere ( maybe docs ) ?</span></p>
<p></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">TIA</span></p>
<p></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">Marco</span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">-- </span></p>
<p><span style="font-family:Bitstream Vera Sans Mono;font-size:10pt;color:#000000">You will always have good luck in your personal affairs.</span></p>
<p></p>
</body></html>