• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

stupid html question : need to list files in a directory

I suck at html because I haven't bothered with it.


I have a directory with stuff in it.

what is the appropriate index file supposed to look like so i can share that directory?
 
It's supposed to not exist. Having an index file in a directory prevents the contents from being viewed.

So, don't put an index.html in the directory, and you'll get your list.
 
Means the permissions are set to not allow directory indexing.

Need to make sure "Options Indexes" is present for whatever portion of the conf file controlls that directory.
 
Originally posted by: Kilrsat
Means the permissions are set to not allow directory indexing.

Need to make sure "Options Indexes" is present for whatever portion of the conf file controlls that directory.

Or you can put a .htaccess file in the directory, with just the line Kilrsat mentioned in it.
 
Back
Top