Error FAIL: filestore folder appears to be browseable; remove 'Indexes' from Apache 'Options' list.??

834 views
Skip to first unread message

adi

unread,
Nov 14, 2012, 12:30:03 AM11/14/12
to resour...@googlegroups.com
Hello,

I am facing this issue and I am not sure what is the problem, I searched for it on this group and fin some info but not enough to solve this issue. Under installation check I see this error

FAIL: filestore folder appears to be browseable; remove 'Indexes' from Apache 'Options' list.

for FIELD

Blocked browsing of 'filestore' directory

In my Apache config file I have these settings:

"<Directory />
  
AllowOverride none
Require all denied
   
</Directory>"

Why do I see this error and how to correct it??

Thank you,
Adi

Alexey Tikhonov

unread,
Nov 14, 2012, 4:29:51 PM11/14/12
to resour...@googlegroups.com
You can disable directory browsing globally in apache config file (if you don't need it somewhere else) via option
Options -Indexes

adi

unread,
Nov 18, 2012, 9:25:58 AM11/18/12
to resour...@googlegroups.com
Hello dear Alexey,

I have found code as you suggested and I found this

#
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL.  You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.
    <Directory "C:/PROGRA~2/EASYPH~2.1/home/images_easyphp">
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
   
    <Directory "C:/PROGRA~2/EASYPH~2.1/phpmyadmin">
        Options FollowSymLinks Indexes
        AllowOverride None
        Order deny,allow
        allow from 127.0.0.1
        deny from all
    </Directory>
       
    <Directory "C:/PROGRA~2/EASYPH~2.1/home">
        Options FollowSymLinks Indexes
        AllowOverride None
        Order deny,allow
        allow from 127.0.0.1
        deny from all
    </Directory>

    <Directory "C:/PROGRA~2/EASYPH~2.1/modules">
        Options FollowSymLinks Indexes
        AllowOverride All
        Order deny,allow
        allow from 127.0.0.1
        deny from all
    </Directory>   

Now I am little bit confused, what I should change???

Also I found this part:

# We include the /icons/ alias for FancyIndexed directory listings.  If
# you do not use FancyIndexing, you may comment this out.
#
Alias /icons/ "C:/PROGRA~2/EASYPH~2.1/apache/icons/"

<Directory "C:/PROGRA~2/EASYPH~2.1/apache/icons">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

Many thanks in advance!

Cheers,
Adi
Message has been deleted

mkl

unread,
Nov 28, 2012, 3:39:59 AM11/28/12
to resour...@googlegroups.com
you've posted several directory entries in your last post. you have to figure out in which of this directories resourcespace is installed.
then remove Indexes from the Options line.
If Indexes is not defined in the directory section, then it is configured globally and you have to add -Indexes to the Options line to disallow it for this path.
Reply all
Reply to author
Forward
0 new messages