Gossamer Forum
Home : Products : Others : Fileman :

Modify View

Quote Reply
Modify View
Can anyone help with modifying the script to eliminate the viewing of directories?

Thanks...

Quote Reply
Re: Modify View In reply to
Can you get a little more specific? Do you not want dirs to show up in listings? Or do you want to remove/modify the link for dirs?

Regards,
Charlie

Quote Reply
Re: Modify View In reply to
Yes.. Thanks...

I want to be able to have someone pull up a particular directory and only see files, even if there are sub folders in that directory (say in the root directory of a web page).

Bill

Quote Reply
Re: Modify View In reply to
This might work. If not it's a start.

In your config, add this line:
In Reply To:
show_dirs => 0,
right after this line:
In Reply To:
show_pass => 1,
Around line 421, change this line:
In Reply To:
if ($file eq '..') {
to this:
In Reply To:
if ($file eq '..' && $config{'show_dirs'}) {
and around line 434, change this line:
In Reply To:
else {
to this:
In Reply To:
elsif ($config{'show_dirs'}) {
Change show_dirs from 0 to 1 to show the dirs. You will also need to set the root_dir to the directory you want to browse.

Regards,
Charlie