Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to sett permession in apachee 2

Status
Not open for further replies.

JASONE25

Technical User
Jun 23, 2005
54
NL
Hi guys. I installed wampsever which insalls apache 2 and php 5 and mysql . I have some folders inside my that i want to set read and rright permession for it but i do not know how ? Also how to chmod a folder to 777 . I am running all this locally one xp pro.I be happy if some expert help me with setting up permessions.Thanks
 
Chmod and permissions is for linux operating systems. You don't need to worry about it with xp. However, you can control who can do what in a directory by creating a directory container for it. If you check out you httpd.conf file, you will notice a few directory containers. They will look like this:

<Directory "/path/to/directory">

Order allow,deny
Allow from 192.168.1.20

</Directory>

This tells apache to evaluate the allow directive before the deny directive and set the default state to deny. The allow directive says only this ip is allowed in this directory.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top