Forum Moderators: phranque
I have several computers connected together through a LinkSys gateway
On one of the computers which is on Linux I have Apache installed ans some webpages in
var/www/html index.php located in this folder with http://192.168.1.68 , but if I want to open another folder with http://192.168.1.68/myfolder/ , I get an error message : Forbidden
You don't have permission to access /myfolder/ on this server.
I would like to be able to put documents in this folder in order to be able to download them in my other computer.
I have
chmod 777 all the folders on the var/www/html path, but without any result. Thanks for your help
roberto
If this is the case, to fix it, you will need to either:
Turn the indexes on EG
Options +Indexes
OR
You will need to upload an index file
OR
Request the files directly by their name, not try to open the directory.
If I have misread your question, please let us know.
Hope this helps.
Justin
what is :
...Turn the indexes on EG
Options +Indexes...?
What I want to do is just to have a folder where I can see the files in it and eventually download them. I used to do this on my hosting service.
When I place an
index.html inside te folder, the it works of course, but that is not what I woud like to achieve. roberto
You can place it in the httpd.conf file, or in a .htaccess file.
Jim