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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

can't access ~user/public_html 1

Status
Not open for further replies.

vasah20

Programmer
Feb 16, 2001
559
US
Hello -
I've just compiled and installed Apache 1.3.20 from the tarball, and I can't access I get a permission denied error.

I've searched around a bit, and I've already done this:
chmod 755 ~/public_html
chmod 644 ~/public_html/*

and my httpd.conf file has the following:
<IfModule mod_userdir.c>
UserDir public_html
UserDir disabled root
</IfModule>

and also the line:
AddModule mod_userdir.c

above it.

What am I missing? I thought I needed to add something from libexec, but all I see there is the libperl.so file.

TIA
leo
leo

------------
Leo Mendoza
lmendoza@students.depaul.edu
 
you must also chmod 711 ~username. here:

The path to the end user account 'public_html' directory must be accessible to the webserver userid. This usually means that ~userid must have permissions of 711, ~userid/public_html must have permissions of 755, and documents contained therein must be world-readable. Otherwise, the client will only receive a &quot;403 Forbidden&quot; message.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top