Reputation: 7413
I am trying to install typo3 as per the instructions but I have a bit of a puzzle to solve. It seems apache denies access to any files I try to access via any symbolic link in the site root directory. I have changed permissions from SymLinksIfOwnerMatch to FollowSymLinks and no joy. I'm working on mac OSX (SL) and installing in my user's "Sites" directory. I can access any files in this CMS directory via the web browser just not anything through symbolic links.
Upvotes: 3
Views: 12381
Reputation: 3734
I hope konsolenfreddy's comment was helpful already. I am trying to round things up here:
AllowOverride
option is set for your webserver (or if applyable for the virtual host) For debugging you can set AllowOverride All
in either apache2.conf, httpd.conf or in sites-available/defaultFollowSymlinks
is aktivated in any of the files responsible for your webroot, starting with apache2 working yourself down to the .htaccess files.* Check this answer at askubuntu.com for more hints.
Upvotes: 6
Reputation: 7413
Ok I eventually solved it. In OSX the final file that governs access of sites installed in user directories is the last Include
line in the apache2/conf/extra/httpd-userdir.conf
file. Once I changed that my problems went away.
Thanks to all the people that replied my questions.
Upvotes: 2