<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Multi level folder support for new index view</title>
        <description> Hi,

Howie was asking for a multi level folder support in the &amp;quot;new index&amp;quot;-view. Since it is not posible to attached files in &amp;quot;Phorum Support&amp;quot; I open this new thread.

See details in the original thread.

Edit 21.03.2007: The patch is now included in future version 5.2.

Regards
Oliver</description>
        <link>https://www.phorum.org/phorum5/read.php?18,112727,112727#msg-112727</link>
        <lastBuildDate>Sun, 08 Mar 2026 13:17:25 -0400</lastBuildDate>
        <generator>Phorum 5.2.22</generator>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,121645#msg-121645</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,121645#msg-121645</link>
            <description><![CDATA[ this is the thread with my old 2004 version of this similar idea but which did support nested folders but may have lacked in another area which i can&#039;t recall.<br />
<br />
[<a href="http://www.phorum.org/phorum5/read.php?18,4345,4419#msg-4419" target="_blank" >www.phorum.org</a>]]]></description>
            <dc:creator>rheo</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Sun, 29 Apr 2007 18:40:31 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,121643#msg-121643</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,121643#msg-121643</link>
            <description><![CDATA[ like I told above, in 5.2, nowhere else.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Sun, 29 Apr 2007 18:38:03 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,121641#msg-121641</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,121641#msg-121641</link>
            <description><![CDATA[ thanks for this.<br />
<br />
i actually had built my own &quot;new&quot; index view years ago which did support nested folders.<br />
<br />
when the &quot;new&quot; view came out i abandoned my own version so that i would have one less thing to patch in my local copy with ever update.<br />
<br />
i was baffled recently when adding a nested folder to find that it was not supported by default.<br />
<br />
this is a big help and i hope it ends up in &quot;new&quot; index view soon.]]></description>
            <dc:creator>rheo</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Sun, 29 Apr 2007 18:35:07 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,121217#msg-121217</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,121217#msg-121217</link>
            <description><![CDATA[ I&#039;ve not tested this code, but I believe this would work:<br />
<pre class="bbcode">
&lt;?php $rclass=&quot;Alt&quot;; ?&gt;
    {ELSE}
      &lt;tr class=&quot;forum&lt;?php echo $rclass;?&gt;&quot;&gt;
        &lt;td class=&quot;forum-name&quot;&gt;
          &lt;a href=&quot;{FORUMS-&gt;url}&quot;&gt;{FORUMS-&gt;name}&lt;/a&gt;&lt;p&gt;{FORUMS-&gt;description}&lt;/p&gt;
          &lt;small&gt;
            {IF LOGGEDIN true}
              {LANG-&gt;Options}:
            {ELSE}
              {IF FORUMS-&gt;url_rss}
                {LANG-&gt;Options}:
              {/IF}
            {/IF}
            {IF LOGGEDIN true}&lt;a href=&quot;{FORUMS-&gt;url_markread}&quot;&gt;{LANG-&gt;MarkForumRead}&lt;/a&gt;{/IF}{IF FORUMS-&gt;url_rss}{IF LOGGEDIN true}&amp;nbsp;&amp;bull;&amp;nbsp;{/IF}&lt;a href=&quot;{FORUMS-&gt;url_rss}&quot;&gt;{LANG-&gt;RSS}&lt;/a&gt;{/IF}
          &lt;/small&gt;
        &lt;/td&gt;
        &lt;td class=&quot;forum-threads&quot; nowrap=&quot;nowrap&quot;&gt;
          {FORUMS-&gt;thread_count}
          {IF FORUMS-&gt;new_threads}
            (&lt;span class=&quot;PhorumNewFlag&quot;&gt;{FORUMS-&gt;new_threads} {LANG-&gt;newflag}&lt;/span&gt;)
          {/IF}
		  /
          {FORUMS-&gt;message_count}
          {IF FORUMS-&gt;new_messages}
            (&lt;span class=&quot;PhorumNewFlag&quot;&gt;{FORUMS-&gt;new_messages} {LANG-&gt;newflag}&lt;/span&gt;)
          {/IF}
        &lt;/td&gt;
        &lt;td class=&quot;forum-last-post&quot; nowrap=&quot;nowrap&quot;&gt;{FORUMS-&gt;last_post}&lt;/td&gt;
      &lt;/tr&gt;
&lt;?php if($rclass==&quot;Alt&quot;) $rclass=&quot;&quot;; else $rclass=&quot;Alt&quot;; ?&gt;
    {/IF}</pre>
the 2 mods I made were to change the tr class to: class=&quot;forum&lt;?php echo $rclass;?&gt;&quot;&gt;<br />
and then add the bit of php at the bottom which changes the class--I&#039;m also resetting the alt class after each folder (that&#039;s the top line in the code block).<br />
<br />
you&#039;d then heed to find (add) all the #phorum-index tr.forum (tr.forumAlt) and modify them.<br />
in my version there isn&#039;t one for tr.forum, so I may be using an older version of css.tpl...<br />
again, I havn&#039;t tested this, but those code changes should do the work.<br />
view source in your browser to make sure the tags are alternating, then start debugging the CSS.<br />
<br />
good luck.]]></description>
            <dc:creator>freedman</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Tue, 27 Mar 2007 13:59:12 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,121210#msg-121210</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,121210#msg-121210</link>
            <description><![CDATA[ Hi, if this is not off-topic for this thread, I have a query regarding Freedman&#039;s posting of code.  In his message post [<a href="http://www2.phorum.org/phorum5/read.php?18,112727,119675#msg-119675" target="_blank"  rel="nofollow">www2.phorum.org</a>],  he refers to both the Multi Level Folders, as well as Classic view colour alternating.  What part of the code he supplied, would I need to use, just to change the colour of the Forums on the Index page?  At the moment, I doubt I would be using Folders/Sub Folders.<br />
<br />
I have put some additional variables in the settings.tpl file (forumcolour &amp; altforumcolour), &amp; put a new class in the css.tpl file (#phorum-indexAlt td).  Then edited the index_new.tpl file, I manage to get the first colour I chose to display, but I can&#039;t get the second/alternate colour to work.<br />
<br />
With regard to the original messages I posted in here, I managed to get them working, with grateful help from Maurice Makaay on coding issues.]]></description>
            <dc:creator>Snake</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Mon, 26 Mar 2007 19:42:52 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,121062#msg-121062</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,121062#msg-121062</link>
            <description><![CDATA[ btw. I finally ported the change from this thread to 5.2<br />
[<a href="http://www2.phorum.org/tracfcgi/changeset/1657" target="_blank"  rel="nofollow">www2.phorum.org</a>]]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 21 Mar 2007 10:22:22 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,121051#msg-121051</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,121051#msg-121051</link>
            <description><![CDATA[ Oh, OK, no problems.<br />
<br />
I did post a Thread in the support forum, I was having difficulty finding anything that matched my issues (index page link colours + alternating row colour inside forums, not just alternating threads).  That thread was posted, about an hour later I checked back for any replies, the messeage/thread was gone.  A history search found the thread, but the page returned a Cannot find message.  It&#039;s ok though, since then I have been able to eventually find similar threads, &amp; I have posted questions asking if they can help, like on this thread.<br />
<br />
P.S. I&#039;m new to PHP &amp; Phorum, so I am trying to get to grips with the system, &amp; the layout/rules of this site.<br />
<br />
Thanks to those who have made some real cool MODs, before my server crashed, which is why I&#039;m having to redo this all over again, I installed some pretty fine MODs &amp; my test forum was looking quite snazzy.]]></description>
            <dc:creator>Snake</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 21 Mar 2007 07:27:41 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,121049#msg-121049</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,121049#msg-121049</link>
            <description><![CDATA[ this thread is solely about the forum-index, not the list or read pages you are talking about. so it has no relevance with your question.<br />
I doubt that your thread was deleted if it wasn&#039;t spam.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 21 Mar 2007 06:54:19 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,121047#msg-121047</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,121047#msg-121047</link>
            <description><![CDATA[ The reason I asked here, was that the question does have some similarities to your previous post on this thread, about the alternating colours for each row of a thread.  And the fact that the last thread/question I started, got deleted with no message to say why.<br />
<br />
P.S. Before my server crashed, I used your Terms of Service Mod, it&#039;s a cool MOD by the way.]]></description>
            <dc:creator>Snake</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 21 Mar 2007 05:59:47 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,121044#msg-121044</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,121044#msg-121044</link>
            <description><![CDATA[ Hi Snake,<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>Snake</strong><br />I&#039;m not using folders at the moment, but I am using the New Style.  Is there a MOD or some form of detailed instructions on how to put this into my Forum?</div></blockquote>
<br />
I think you should start a new thread with your question...<br />
<br />
Regards<br />
Oliver]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 21 Mar 2007 03:24:10 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,121041#msg-121041</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,121041#msg-121041</link>
            <description><![CDATA[ I&#039;m not using folders at the moment, but I am using the New Style.  Is there a MOD or some form of detailed instructions on how to put this into my Forum?<br />
<br />
I have the Treeview MOD installed, &amp; would love to have each row, within each Thread, alternating between 2 colours I choose.<br />
<br />
I don&#039;t necessarily need to have the alternating colour in the Forum Index page, but within each forum thread view, yes.]]></description>
            <dc:creator>Snake</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Tue, 20 Mar 2007 21:03:06 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,119675#msg-119675</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,119675#msg-119675</link>
            <description><![CDATA[ I&#039;ve modified this so that it more closely matches the look &amp; feel of the &#039;classic&#039; style in that, within a folder view, every other row can have an alternate color scheme.<br />
<br />
It resets the alternating each folder, so that it doesn&#039;t look stupid :P<br />
<br />
<pre class="bbcode">
&lt;div class=&quot;PhorumNavBlock&quot;&gt;
  &lt;span class=&quot;PhorumNavHeading&quot;&gt;{LANG-&gt;Goto}:&lt;/span&gt;&amp;nbsp;{IF URL-&gt;INDEX}&lt;a class=&quot;PhorumNavLink&quot; href=&quot;{URL-&gt;INDEX}&quot;&gt;{LANG-&gt;ForumList}&lt;/a&gt;&amp;bull;{/IF}&lt;a class=&quot;PhorumNavLink&quot; href=&quot;{URL-&gt;SEARCH}&quot;&gt;{LANG-&gt;Search}&lt;/a&gt;&amp;bull;{INCLUDE loginout_menu}
&lt;/div&gt;
&lt;table id=&quot;phorum-index&quot; cellspacing=&quot;0&quot;&gt;
  {LOOP FORUMS}
    {IF FORUMS-&gt;level 0}
      &lt;tr class=&quot;folder&quot;&gt;
        {IF FORUMS-&gt;forum_id FORUMS-&gt;vroot}
          &lt;th class=&quot;forum-name&quot;&gt;{LANG-&gt;Forums}&lt;/th&gt;
        {ELSE}
          &lt;th class=&quot;forum-name&quot;&gt;&lt;a href=&quot;{FORUMS-&gt;url}&quot;&gt;{FORUMS-&gt;name}&lt;/a&gt;&lt;/th&gt;
        {/IF}
        &lt;th class=&quot;forum-threads&quot;&gt;{LANG-&gt;Threads}&lt;/th&gt;
        &lt;th class=&quot;forum-posts&quot;&gt;{LANG-&gt;Posts}&lt;/th&gt;
        &lt;th class=&quot;forum-last-post&quot;&gt;{LANG-&gt;LastPost}&lt;/th&gt;
      &lt;/tr&gt;
      &lt;?php $rclass=&quot;&quot;; ?&gt;
    {ELSE}
      &lt;tr class=&quot;forum&lt;?php echo $rclass;?&gt;&quot;&gt;
        {IF FORUMS-&gt;folder_flag}
          &lt;td class=&quot;forum-name&lt;?php echo $rclass;?&gt;&quot; colspan=&quot;4&quot;&gt;
            &lt;a href=&quot;{FORUMS-&gt;URL-&gt;INDEX}&quot;&gt;{FORUMS-&gt;name}&lt;/a&gt;&lt;p&gt;{FORUMS-&gt;description}&lt;/p&gt;
          &lt;/td&gt;
        {ELSE}
          &lt;td class=&quot;forum-name&lt;?php echo $rclass;?&gt;&quot;&gt;
            &lt;a href=&quot;{FORUMS-&gt;url}&quot;&gt;{FORUMS-&gt;name}&lt;/a&gt;&lt;p&gt;{FORUMS-&gt;description}&lt;/p&gt;&lt;small&gt;{LANG-&gt;Options}: {IF LOGGEDIN true}&lt;a href=&quot;{FORUMS-&gt;url_markread}&quot;&gt;{LANG-&gt;MarkForumRead}&lt;/a&gt;{/IF}{IF FORUMS-&gt;url_rss}{IF LOGGEDIN true}&amp;nbsp;&amp;bull;&amp;nbsp;{/IF}&lt;a href=&quot;{FORUMS-&gt;url_rss}&quot;&gt;{LANG-&gt;RSS}&lt;/a&gt;{/IF}&lt;/small&gt;
          &lt;/td&gt;
          &lt;td class=&quot;forum-threads&lt;?php echo $rclass;?&gt;&quot; nowrap=&quot;nowrap&quot;&gt;
            {FORUMS-&gt;thread_count}
            {IF FORUMS-&gt;new_threads}
              (&lt;span class=&quot;PhorumNewFlag&quot;&gt;{FORUMS-&gt;new_threads} {LANG-&gt;newflag}&lt;/span&gt;)
            {/IF}
          &lt;/td&gt;
          &lt;td class=&quot;forum-posts&lt;?php echo $rclass;?&gt;&quot; nowrap=&quot;nowrap&quot;&gt;
            {FORUMS-&gt;message_count}
            {IF FORUMS-&gt;new_messages}
              (&lt;span class=&quot;PhorumNewFlag&quot;&gt;{FORUMS-&gt;new_messages} {LANG-&gt;newflag}&lt;/span&gt;)
            {/IF}
          &lt;/td&gt;
          &lt;td class=&quot;forum-last-post&lt;?php echo $rclass;?&gt;&quot; nowrap=&quot;nowrap&quot;&gt;{FORUMS-&gt;last_post}&lt;/td&gt;
        {/IF}
      &lt;/tr&gt;
	  &lt;?php if($rclass==&quot;Alt&quot;) $rclass=&quot;&quot;; else $rclass=&quot;Alt&quot;; ?&gt;
    {/IF}
  {/LOOP FORUMS}
&lt;/table&gt;</pre>
<br />
then modify css.tpl to add the following items:<br />
#phorum-index td.forum-nameAlt<br />
#phorum-index td.forum-nameAlt p<br />
#phorum-index td.forum-nameAlt small<br />
#phorum-index td.forum-threadsAlt<br />
#phorum-index td.forum-postsAlt<br />
#phorum-index td.forum-last-postAlt<br />
<br />
for me, I just copied the NON-&#039;Alt&#039; version and added a lighter background color.<br />
<br />
(actually, in my phorum, I&#039;ve extracted this info into a .css file which I include instead of dynamically presenting this--seems to save a lot of bandwidth and facilitates client-side caching of the css file)]]></description>
            <dc:creator>freedman</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 24 Jan 2007 17:39:38 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,117181#msg-117181</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,117181#msg-117181</link>
            <description><![CDATA[ okay then problem one is buried somewhere in my template. I&#039;ll go and look for it.<br />
<br />
thanks all the same.<br />
<br />
Net.]]></description>
            <dc:creator>Netwalker</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 04 Oct 2006 07:43:13 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,117179#msg-117179</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,117179#msg-117179</link>
            <description><![CDATA[ Hi Netwalker,<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>Netwalker</strong><br />
so the folder shows up nicely on top of the boards in folder 1 but it links to folder 1 (index.php?9 instead of index.php?140 as it should do)</div></blockquote>
<br />
I just downloaded Phorum 5.1.16a, replaced the two files from my &quot;Multi Levvel Folder Support&quot; and it&#039;s working for me like you can see here:<br />
[<a href="http://phorum-5.1.16a.riesen.org/index.php" target="_blank"  rel="nofollow">phorum-5.1.16a.riesen.org</a>]<br />
<br />
Folder1 contains (sub-) Folder3<br />
<br />
Regards<br />
Oliver]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 04 Oct 2006 07:35:34 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,117176#msg-117176</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,117176#msg-117176</link>
            <description><![CDATA[ really sorry about confusing you. I thought it would be clear as I stated that <br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />Folder 1 is invisible for all those you are neither admin nor mod.</div></blockquote>
<br />
;)<br />
<br />
now hoping for Oliver not to be bothered to much with my questions.<br />
<br />
Net.]]></description>
            <dc:creator>Netwalker</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 04 Oct 2006 07:17:38 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,117173#msg-117173</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,117173#msg-117173</link>
            <description><![CDATA[ yeah but thats a completely different issue than what you told above.<br />
but I&#039;ll leave that issue to Oliver.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 04 Oct 2006 07:13:59 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,117171#msg-117171</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,117171#msg-117171</link>
            <description><![CDATA[ yes and no. if there are no visible boards in a folder the folder itself should vanish from view for everyone except admins. (which folder 1 did perfectly well before folder 2 was introduced) but now folder 2 shows up although its contents are invisible. which it shouldn&#039;t do.<br />
<br />
Is that better to understand?]]></description>
            <dc:creator>Netwalker</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 04 Oct 2006 07:05:28 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,117170#msg-117170</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,117170#msg-117170</link>
            <description><![CDATA[ you did this <br />
&gt; I set Board 2.1 (the &#039;sub-Board&#039;) to be visible for admins only <br />
<br />
and told this <br />
<br />
&gt; therefore I get for anonymous (and all other &#039;normal&#039;) users:<br />
&gt; Folder 1 -&gt; Folder 2 -&gt; You have no right to see this forum. <br />
<br />
which is absolutely correct IMO. there is nothing to see for anonymous / normal users as the forum is only visible to admins.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 04 Oct 2006 07:03:35 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,117168#msg-117168</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,117168#msg-117168</link>
            <description><![CDATA[ I found another problem just now.<br />
<br />
as I said my folder structure is the following:<br />
<br />
Folder 1<br />
--&gt; Folder 2<br />
-----&gt; Board 2.1<br />
--&gt; Board 1.1<br />
--&gt; Board 1.2<br />
<br />
-------<br />
now Folder 1 visible but Boards 1.1 and 1.2 are only to be seen by admins resp. mods. therefore Folder 1 is invisible for all those you are neither admin nor mod.<br />
<br />
BUT if I set Folder 2 to visible (for invisible would hide it from EVERYONE incl admins) and I set Board 2.1 (the &#039;sub-Board&#039;) to be visible for admins only I hit a problem as Folder 2 does not check (or so it seems) whether its contents are visible. therefore I get for anonymous (and all other &#039;normal&#039;) users:<br />
<br />
Folder 1 -&gt; Folder 2 -&gt; You have no right to see this forum.<br />
<br />
which is rather annoying.<br />
<br />
really sorry to bother you with that.<br />
<br />
Netwalker.]]></description>
            <dc:creator>Netwalker</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 04 Oct 2006 07:00:46 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,117165#msg-117165</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,117165#msg-117165</link>
            <description><![CDATA[ hmm okay now it does at least something :)<br />
<br />
but my folder structure is:<br />
<br />
Folder 1<br />
--&gt; Folder 2<br />
-----&gt; Board 2.1<br />
--&gt; Board 1.1<br />
--&gt; Board 1.2<br />
<br />
-------<br />
<br />
so the folder shows up nicely on top of the boards in folder 1 but it links to folder 1 (index.php?9 instead of index.php?140 as it should do)<br />
<br />
hmm.<br />
<br />
thanks all the same. another question. it wouldn&#039;t be possible to show a board just inside another would it? that I would open board 1.1 and find board 2.1 inside? (our old board had this. for one sublevel at least. and we are really missing it :/ )<br />
<br />
Net.]]></description>
            <dc:creator>Netwalker</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 04 Oct 2006 06:22:41 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,117164#msg-117164</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,117164#msg-117164</link>
            <description><![CDATA[ Hi Netwalker,<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>Netwalker</strong><br />does this still work for phorum 5.1.16a?</div></blockquote>
<br />
Please try new version in my first post.<br />
<br />
Regards<br />
Oliver]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 04 Oct 2006 06:12:21 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,117159#msg-117159</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,117159#msg-117159</link>
            <description><![CDATA[ does this still work for phorum 5.1.16a? would be really great as nested folders still don&#039;t show up :/<br />
<br />
thanks,<br />
<br />
Net.]]></description>
            <dc:creator>Netwalker</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Wed, 04 Oct 2006 05:42:43 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,116779#msg-116779</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,116779#msg-116779</link>
            <description><![CDATA[ I would nominate Oliver&#039;s contribution be included in the next formal release. His change will only affect the asthetics of the phpBB-like forum list when there are folders that are nested. Most people who want a phpBB-like look won&#039;t nest folders and people who do nest-folders are already confused by the current design&#039;s exlcusion of those folders from thier index page. <br />
<br />
-r]]></description>
            <dc:creator>rgroth</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Thu, 21 Sep 2006 12:21:49 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,115214#msg-115214</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,115214#msg-115214</link>
            <description><![CDATA[ the point is to show all forums in the first level directly below their folders on the main index-view and not needing to descent into the folders as it was in previous versions or the classic view.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Mon, 07 Aug 2006 05:21:50 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,115212#msg-115212</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,115212#msg-115212</link>
            <description><![CDATA[ The naming of the exact options will be addressed in Phorum 5.2. There&#039;s already a ticket for that. &quot;New&quot; and &quot;Classic&quot; will probably only make sense to people who are familiar with a previous version of Phorum, where nested folders were the default and the categorized view was something new.<br />
<br />
One benefit of using the new view is that a lot of forum visitors wil expect that kind of forum overview instead of folders. But there&#039;s no real use in talking about benefits here. Just decide for yourself whether you want the folders to display as categories (new view) or as real folders (classic view).]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Mon, 07 Aug 2006 04:52:27 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,115210#msg-115210</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,115210#msg-115210</link>
            <description><![CDATA[ What exactly was requested?  Not supporting nested folders?  Or something else.  It isn&#039;t really at all clear what the &quot;New&quot; view is intended to achieve, or why exactly anyone would choose it over the &quot;Classic&quot; view.  The main difference I can see is the the &quot;New&quot; view doesn&#039;t allow nested folders - yet since Phorum&#039;s admin system allows you to create them this seems rather confusing.<br />
<br />
If I don&#039;t use &quot;New&quot; view what benefits am I missing out on?]]></description>
            <dc:creator>dunxd</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Mon, 07 Aug 2006 04:28:26 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,115203#msg-115203</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,115203#msg-115203</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>dunxd</strong><br />Yeah - I&#039;ll second that.  I thought that the absence of this feature was a bug and reported it as such.  What exactly is the benefit of this &quot;New&quot; view over the classic one?</div></blockquote>
<br />
It was highly requested and is sort of the defacto standard for how a forum is supposed to work.  Most other software does not offer folders and it blows people&#039;s minds at times.]]></description>
            <dc:creator>Brian Moon</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Mon, 07 Aug 2006 00:17:40 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,115090#msg-115090</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,115090#msg-115090</link>
            <description><![CDATA[ Yeah - I&#039;ll second that.  I thought that the absence of this feature was a bug and reported it as such.  What exactly is the benefit of this &quot;New&quot; view over the classic one?]]></description>
            <dc:creator>dunxd</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Fri, 04 Aug 2006 05:07:34 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,114703#msg-114703</guid>
            <title>Re: Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,114703#msg-114703</link>
            <description><![CDATA[ Thank you!<br />
<br />
I hope this will be soon integrated in the official version and compatible with the Martha skin. Ready to test :-)]]></description>
            <dc:creator>natmaka</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Tue, 25 Jul 2006 04:56:43 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?18,112727,112727#msg-112727</guid>
            <title>Multi level folder support for new index view</title>
            <link>https://www.phorum.org/phorum5/read.php?18,112727,112727#msg-112727</link>
            <description><![CDATA[ Hi,<br />
<br />
Howie was <a href="http://www.phorum.org/phorum5/read.php?12,112690,112690" target="_blank" >asking for a multi level folder support in the &quot;new index&quot;-view</a>. Since it is not posible to attached files in &quot;Phorum Support&quot; I open this new thread.<br />
<br />
See details in the original thread.<br />
<br />
Edit 21.03.2007: The patch is now included in future version 5.2.<br />
<br />
Regards<br />
Oliver]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>5.1 Phorum Hacks</category>
            <pubDate>Mon, 08 May 2006 02:56:11 -0400</pubDate>
        </item>
    </channel>
</rss>
