Jump to content

Help with Directory Permissions


Riparian

Recommended Posts

Hi

 

I need to allow users to upload to a directory

 

I can then access the information (jpegs) from a management section (e.g. using <img src> )

 

The prob is that if someone types e.g. sitename/directory/ the contents of the directory is displayed.

Can I password the directory but still allow the user to upload to it.

 

Cheers and any help greatly appreciated.

Link to comment
https://forums.phpfreaks.com/topic/223933-help-with-directory-permissions/
Share on other sites

Password protection (like the kind done with a .htaccess or IIS setting) only affects somebody trying to browse to the location. It would not affect whether PHP could upload a file into the folder. It would, however, affect showing the files inside. You wouldn't be able to without the login.

 

Sounds like you just want to block a directory index. Pretty simple, assuming the server is configured to allow it.

Options -Indexes

Put that in a .htaccess in the upload directory.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.