I cannot for the life of me figure out how to enable directory listing in 1.0.
I essentially just want Options +FollowSymLinks +Indexes for a vhost, but I do not see anything anywhere that does this. Any ideas?
<wrong>Figured it out... Options +Indexes in the override settings for vhost.</wrong>
Iwas wrong the above did NOT fix the issue... it was a manual edit I had done that fixed it temporarily. Still need a solution for this.
I might have found a work around... not sure if it will load in custom though. I saved it but the vhost file did not seem to update.....
<Directory "/var/sentora/hostdata/zadmin/public_html/whatever_com/Temp">
Options +FollowSymLinks +Indexes
AllowOverride All
Require all granted
</Directory>
You should not do it that way!!!!!!!!
try using .htaccess
(03-02-2015, 08:11 AM)Me.B Wrote: [ -> ]You should not do it that way!!!!!!!!
try using .htaccess
Ok so took out that code, made an .htacccess for each folder I wated this in and put the code in
Code:
Options All +Indexes
Worked like a champ! anything else I need to be aware of using this code above?
.htaccess is good and don't use vhost override for this, that's it.
M B