Tell me more ×
Webmasters Stack Exchange is a question and answer site for pro webmasters. It's 100% free, no registration required.

I have set up a web server in my Windows 7 with easyPHP. The website works fine when I browse the locally via localhost or 127.0.0.1. But, unable to open the site from another computer which is in the same LAN or in connected to my LAN. My local IP is in the 10.x.x.x range.

The firewall turned off on my private network.

I've also tried by changing Listen 127.0.0.1:80 to Listen 80 In httpd.conf but still i'm unable to access the media wiki from other machines.

Unable to browse the pages from other machines using localhost or using IP address (Ex: 10.x.x.x).

Could you please let me know your suggestions and comments?

share|improve this question
Did you put EasyPHP in Online mode (for the system tray icon)? – j0k Aug 6 '12 at 11:57
Yes, able to see the incon in the task bar. How to cross-check? – Kathiresan Jeyapandian Aug 6 '12 at 12:02
Woops sorry my advice was for wampserver, not easy php... – j0k Aug 6 '12 at 12:03

closed as off topic by danlefree May 6 at 22:22

Questions on Webmasters Stack Exchange are expected to relate to webmastering within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Solution on the internet told to uncomment this line:

Listen 127.0.0.1:80

From the apache configuration (apache.conf or httpd.conf).

Or better put your own IP instead of 127.0.0.1.

edit:

You can change the :80 by the port you want: :8089. Be sure to also check virtual host, like:

<VirtualHost *:80>

Changed to

<VirtualHost *:8089>
share|improve this answer
I tried both and it didn't work. – Kathiresan Jeyapandian Aug 6 '12 at 12:15
Did you restart apache after each test? Whih error, 403, 404 ? – j0k Aug 6 '12 at 12:17
Yes. Is it possible to give the port something different as 8089 and fix the problem? please suggest me the steps. – Kathiresan Jeyapandian Aug 6 '12 at 12:21
it didnt work. could you please let me know the steps? – Kathiresan Jeyapandian Aug 6 '12 at 12:59

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