Not signed in (Sign In)

Categories

Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.

Help keep Vanilla free:
Welcome Guest!
Want to take part in these discussions? If you have an account, sign in now.
If you don't have an account, apply for one now.
  1.  # 1
    I set 'forum' in the hidden files part of the config so my vanilla directory wouldnt be browsed by filebrowser. And its now not showing in the list of folders, however when i click 'images' (the next (and only) folder there) it browses the forum folder. And i have to change the 'did' variable in the address bar to get it to browse images.

    I guess this is mainly a linking bug, but it could also be a bit of a security hole if people notice that theres a jump between 2 did's when browsing something (i,e then they can look at the folder[s] in the middle)
    •  
      CommentAuthorMark
    • CommentTimeJul 16th 2005
     # 2
    Oh, that's a bug for sure.
    I'll get on that one right away.
  2.  # 3
    <3
    You work better than most paid people i've ever met.
    •  
      CommentAuthorMark
    • CommentTimeJul 16th 2005 edited
     # 4
    It's fixed and uploaded.

    You can get version 1.3.1 from thefilebrowser.com, now :)
    • CommentAuthorwulff
    • CommentTimeJul 24th 2005 edited
     # 5
    I encountered a similar problem with version 1.3.3.

    I installed Filebrowser in a directory containing two subdirectories: '_foo' and 'bar'.

    On the main Filebrowser page only 'bar' was listed under the 'Folders' heading, but clicking on the link displayed the contents of '_foo' instead of the contents of 'bar'.

    The following patch fixes this:

    --- index.orig Fri Jul 22 10:39:14 2005
    +++ index.php Sun Jul 24 10:58:25 2005
    @@ -720,7 +720,8 @@
    if ($Item != '.'
    && $Item != '..'
    && is_dir($Path."/".$Item)
    - && !in_array($Path."/".$Item, $Config->FullyQualifiedHideFiles)) $aCurrentSubFolders[] = $Item;
    + && !in_array($Path."/".$Item, $Config->FullyQualifiedHideFiles)
    + && !($Config->DisplayHiddenFiles == "false" && substr($Item,0,1) == "_")) $aCurrentSubFolders[] = $Item;
    }
    closedir($FolderHandle);
    // Sort the folders according to the config setting
Add your comments
    Username Password
  • Format comments as