Hi - I have been banging my head against the wall for the past trying to get a user to be able to publish WebPages via his user directory using ~username

Within the users home directory I created public_html link to an html folder also within the userdir. The link and folders have 755 permissions following configuration files are setup as follow. I also get a message in the error log. Can someone help me figure this out?


Here is the error along with the mod_userdir.conf file/

Mon Apr 27 10:48:10 2009] [error] [client xxx.xxx.xxx.81] client denied by server configuration:
[Mon Apr 27 10:48:10 2009] [error] Failed to change_hat to 'HANDLING_UNTRUSTED_INPUT'


######################## mod_userdir.conf #####################################

# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received.
#

<IfModule mod_userdir.c>
# Note that the name of the user directory ("public_html") cannot easily be
# changed here, since it is a compile time setting. The apache package
# would have to be rebuilt. You could work around by deleting
# /usr/sbin/suexec, but then all scripts from the directories would be
# executed with the UID of the webserver.
#
# To rebuild apache with another setting you need to change the
# %userdir define in the spec file.

# not every user's directory should be visible:
UserDir disabled root

# to enable UserDir only for a certain set of users, use this instead:
#UserDir disabled
#UserDir enabled user1 user2
UserDir enabled fsl



# the UserDir directive is actually used inside the virtual hosts, to
# have more control
#UserDir public_html

<Directory /home/*/public_html>

AllowOverride FileInfo AuthConfig Limit Indexes
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec

<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>

<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>

</Directory>

</IfModule>