I've been agonizing over this issue for the past day now. I've setup lighty on my server and it serves static files fine but keeps giving me 403 on php files.

I've gone through every tutorial, wiki and forum that I can find on the subject and nothing helped.

I've chown lighttpd:lighttpd the php files and chmod to 644 and 755. I really need some help here.

Here is a link to my *.conf files:

http://174.122.151.65/lighttpd/

BTW, I'm running on a centOS box.

Thanks.

link|improve this question

76% accept rate
feedback

1 Answer

up vote 2 down vote accepted

It looks like you are missing the fastcgi.server section of your lighttpd.conf file

fastcgi.server             = ( ".php" =>
                               ( "localhost" =>
                                 (
                                   "socket" => "/var/run/lighttpd/php-fastcgi.socket",
                                   "bin-path" => "/usr/bin/php-cgi"
                                 )
                               )
                            )
link|improve this answer
that's setup in the fastcgi.conf. Is it supposed to be in the lighttpd.conf file too? – Vitaliy Isikov Apr 13 '11 at 20:12
Don't know for sure. The examples I found all had it in the base config file. Couldn't hurt to try :) – Amy Anuszewski Apr 13 '11 at 20:32
THANKS!! It worked. :) – Vitaliy Isikov Apr 13 '11 at 20:35
I had the same thing and it turned out to be selinux. Curse you, selinux! – barrycarter Apr 27 '11 at 15:00
feedback

Your Answer

 
or
required, but never shown

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