I just fresh installed XAMPP for Linux (version 1.7.4) on my laptop (Ubuntu 11.04 x64). And then I made link on my htdocs folder to my project folder

$pwd
/opt/lampp/htdocs
$sudo ln -s /home/petra/projects/webapp webapp
$ls -al
drwxr-xr-x  4 nobody root 4096 2011-08-18 11:58 .
drwxr-xr-x 18 root   root 4096 2011-01-25 15:33 ..
lrwxrwxrwx  1 root   root   26 2011-08-18 11:42 webapp -> /home/petra/projects/webapp

When I opened the webapp in the browser http://localhost/webapp, it only showed 403 Access Forbidden. The error log said

$tail -f /opt/lampp/logs/error_log
[Thu Aug 18 11:43:15 2011] [error] [client 127.0.0.1] Symbolic link not allowed or link target not accessible: /opt/lampp/htdocs/webapp

Here is the httpd.conf. Strangely, the FollowSymLinks options are already defined (default).

There is a similar question on the XAMPP forum but I think nobody seems to pay attention to it anymore.

Anyone have any idea how to fix this?

link|improve this question

You don't have a .htaccess file in /opt/lampp/htdocs that disables FollowSymLinks? – alex Aug 18 '11 at 4:55
there is no .htaccess file in the /opt/lampp/htdocs – Petra Barus Aug 18 '11 at 4:58
feedback

2 Answers

up vote 2 down vote accepted

After trying here and there, I found out that if I use link from directory outside /home/petra, the webapp is working normally. I guess it's because I use Encrypted Home Directory setting on my Ubuntu.

I just have to move the project directory outside my home directory to make it works.

link|improve this answer
feedback

Can it be because Apache does not have permission to access your project folder?

link|improve this answer
It might be. Since my project folder is encrypted, I guess the server can't read it. – Petra Barus Aug 18 '11 at 12:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.