I have been trying to configure a web server using lighttpd on Windows. After installing PHP, everytime I try to access a PHP file from the directory 'htdocs,' I get the error: '403 - Forbidden.' I have followed this tutorial to setup lighttpd: http://joshdick.net/writing/lighttpd. I have searched Google, but haven't found any good documentation on this problem. FYI: I'm pretty new to this. I have the content of my 'lighttpd-inc.conf' file here.

Any help would be greatly appreciated. Thanks!

link|improve this question

40% accept rate
feedback

1 Answer

There are a lot of things this could be. For instance, if you are using FastCGI on Windows there may be an issue (they don't play nice). It could be as simple as your folder permissions (in Windows) don't allow access to this folder. However, after trying to look over your .conf file (the lack of line breaks makes it a bear to read), I have a place you could start looking.

It looks like you are referring to the path to htdocs improperly. For example, this line here:

server.document-root = "HTDOCS/"

I don't think that path will work properly. Usually you have to have a "/HTDOCS/" style path. There are a number of lines like this throughout your file. Here is a link to some documentation on this:

http://redmine.lighttpd.net/wiki/1/server.document-rootdetails

link|improve this answer
Thank you for your reply. I tried that, although I don't think that is the issue as when I try to access localhost or 127.0.0.1, I still get the default lighttpd index.html. Viewing the source of my .conf file makes it much easier to read. Thanks again! – Kincaid Jun 5 '11 at 23:42
1  
@Kincaid - if you put localhost or the IP address, that is a full path. When you put a folder name, you have to have a leading backslash to denote a directory below the main. Good tip on the view source. It worked like a charm. I forgot about trying that. – BiggsTRC Jun 5 '11 at 23:48
feedback

Your Answer

 
or
required, but never shown

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