Okay, this gets dumber then:<br><br>WikiGroups are very easy to set up, but in the documentation I've gone through as well as in your letter, a group.php file is mentioned (I believe this is the same thing as what you call 
groupname.php). <br><br>For example, I can set up the GefelteFish group as easily as any other. But now I want a skin for that group only.<br>1) Am I defining this in config.php or in a special folder or file? It appears to be one of the latter. But I find no instructions or examples how to do that.
<br>2) If it should be a file in the local folder, how/what would a GefelteFish.php look like (there is no sample-group.php file AFAIK)? <br>3) If group.php in a subfolder &quot;GefelteFish&quot; then the same question - what would go in the file in addition to the skins specification?
<br>4) Then would one or the other need a pointer in the config.php file?<br><br>I think I'm missing something obvious here. WIth apologies.... hopefully once I get past this, the language and password issues will be easy with the info below...
<br><br>Don<br><br><br><br><div><span class="gmail_quote">On 10/8/06, <b class="gmail_sendername">Crisses</b> &lt;<a href="mailto:crisses@kinhost.org" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">

crisses@kinhost.org</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>On Oct 7, 2006, at 11:15 PM, Donald Z. Osborn wrote:
<br><br>&gt; A couple of questions from a true non expert in this:<br>&gt;<br>&gt; 1. When I create a new wikigroup that's simple enough. (I believe<br>&gt; that that is reflected only in the file(s) added to the wiki.d<br>

&gt; folder - ?)<br>&gt;<br>&gt; 2. Changing a skin in the config file is straightforward.<br>&gt;<br>&gt; 3. BUT, when it comes to setting skins for groups, I don't follow.<br>&gt; In one place it seemed like there were alternative suggestions to
<br>&gt; add lines in the config file (but I didn't get the syntax) or<br>&gt; create local/Group.php files. I think I'm missing an essential<br>&gt; piece of the logic in how all this is set up<br>&gt;<br>&gt; My need is to set up 50+ groups (initially of one page each) with
<br>&gt; * a skin setting for each (all the same to start but option to<br>&gt; change individual ones later)<br>&gt; * different language settings (many English, many French, a few<br>&gt; Portuguese. I'll get to the language later, I think, but maybe
<br>&gt; those commands should be done at the same time; language will be<br>&gt; set once and for all for each case, in principle<br><br>Skins &amp; Languages:<br><a href="http://pmwiki.org/wiki/PmWiki/Internationalizations" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">

http://pmwiki.org/wiki/PmWiki/Internationalizations</a> tells you how to<br>set up the language translations<br><br>Thus you can make a local/GroupName.php<br><br>&lt;?php if (!defined('PmWiki')) exit();<br><br>//change to French language
<br>XLPage('fr','PmWikiFr.XLPage');<br><br>// Set the skin for the group<br>$Skin = 'french';<br><br>Since this file is only read when loading a page in a specific group,<br>it sets the skin for any pages viewed in that group.
<br><br>&gt; * password setup: one existing edit &amp; one admin for all, but with<br>&gt; option to set individual passwords for groups<br><br>The overall is set in config.php:<br><br>$DefaultPasswords['admin'] = crypt('secret');
<br>$DefaultPasswords['edit'] = crypt('nosecret');<br><br>The individual group passwords are set in GroupName.GroupAttributes?<br>action=attr in the wiki itself (&quot;GroupName&quot; needs to change to the<br>name of the group... 
i.e. Main/GroupAttributes, PmWiki/<br>GroupAttributes).&nbsp;&nbsp;That option always exists from within the wiki,<br>and you can create a group of people able to set the attributes<br>(passwords) of pages and groups.&nbsp;&nbsp;See the PmWiki/AuthUser directions
<br>for using groups in PmWiki:<br><br>$DefaultPasswords['attr'] = '@moderators';<br><br>&gt; What is the simplest way to do set up such configurations for<br>&gt; multiple groups? What is the most flexible way to do this? Are
<br>&gt; these the same?<br><br>I don't know any other way to do this.&nbsp;&nbsp;Other people can chime in --<br>but these are the basic directions.<br><br>Crisses<br></blockquote></div><br>