Ron Staples wrote:
> 
> Following the instructions outline in O'Rilly's book "Learning Red Hat Linux"

What version of Apache are you running??

Check your httpd.conf file and uncomment the following line....

UserDir public_html

Here's the examples straight from the httpd.conf file to setup those 
directories

<Directory /*/public_html>
    AllowOverride FileInfo AuthConfig Limit
    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
    <Limit GET POST OPTIONS PROPFIND>
        Order allow,deny
        Allow from all
    </Limit>
    <Limit PUT DELETE PATCH PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
        Order deny,allow
        Deny from all
    </Limit>
</Directory>

Make sure your public_html directories are at least set to 701.

Good Luck.

-- 
Anthony Baratta


-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to