I set up a web server in my Windows 7 with easyPHP. The website works fine when you browse to http://localhost/ or http://127.0.0.1/. But, you can't open the site from another computer in my LAN. My local IP is in the 10.x.x.x range. I can ping other machines on the same LAN. But, I cannot browse to 10.x.x.x from my own or any other PC.

I am currently easyPHP on Windows 7 with the firewall turned off on my private network.

P.S.: I fixed one problem: In httpd.conf I changed Listen 127.0.0.1:80 to Listen 80. Now browsing the page using localhost works fine, but using 10.x.x.x I get an Access forbidden message.

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

The problem has been fixed:

The problem was in httpd.conf:

1) I did change my Alias

<Directory "C:/Users/...">
Options FollowSymLinks Indexes
AllowOverride None
Order deny,allow
</Directory>

2) Listen key from Listen 127.0.0.1:80 to Listen 80

link|improve this answer
If this solves the problem, please click on the ✓ symbol to accept this as the answer. – screener Dec 25 '11 at 3:29
feedback

Changing the Listen port to 80 in the http.conf file allowed me to access my computer as a web server from another computer. The default file displayed was in my "EasyPHP/www" folder. When I moved content thier, it was displayed.

When I updated the "Directory" section of the of the http.conf file (along with the Listen port change) I was able to see other directories I specified there.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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