Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
Ok. Then, are you sure that the apache root folder is /opt/lampp/htdocs/, and what are the permissions of the red_social folder ?
Usually, you must have the execution right for everybody on the folder for apache to access it, if it's not owned by the declared apache user.
do a in your htdocs folder to look at the red_social permissions.
They should looks something like this (an example from my own home server)
Code:
drwxrwxr-x 19 apache webdev 4096 Nov 10 15:21 workspace
It's the 1st column that is important.
d means "directory", then it's 3 series of "rwx" meaning "read - write - execute".
The first series relate to the owner of the file (here: apache), the second to the members of the group (here: webdev), and the third is the permissions to everybody not in the 2 first cases.
In this case, apache user and members of the group webdev have full rights, and everybody else have execution and read rights only.
__________________
Only a biker knows why a dog sticks his head out the window.
Last edited by tripy; 01-09-2009 at 06:41 AM..
|