Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have just set up a wi-fi network at home. I have all my files on my desktop computer (192.168.1.56) and want to access localhost over there from another computer (192.168.1.2).

On my desktop I can access localhost through the normal http://localhost. Apache is running on port 80 as usual.

Exactly what do I have to do to achieve this? There is documentation on the net but they either don't work or are too fragment and confusing to understand.

I think I have to make changes to my apache's httpd.conf file and the hosts file. Any ideas as to what changes to make?

share|improve this question

2 Answers

up vote 11 down vote accepted

Localhost is just a name given for the loopback, eg its like referring to yourself as "me" ..

To view it from other computers, chances are you need only do http://192.168.1.56 or http://myPcsName if that doesnt work, there is a chance that there is a firewall running on your computer, or the httpd.conf is only listening on 127.0.0.1

share|improve this answer
httpd.conf: Listen 80 if I need to make a change to that, what would you recommend? – vr3690 Apr 2 '11 at 15:44
That just says listen on port 80, chances are its already listening. netstat -a , look for items on port 80, it will tell you which IP(s) its listening on – BugFinder Apr 2 '11 at 15:52
protocol:tcp, local address:0.0.0.0:80, foreign address:desktoppcname, state:listening – vr3690 Apr 2 '11 at 15:59
1  
There you go, that means its listening for any request on port 80, not just localhost, so, if your PC was called vr3609, then http to it should take you to your website. – BugFinder Apr 2 '11 at 17:43
1  
Ok, 192.168.1.56, thats the one with the website on right? You need to look at the config of it. What OS does it run? What firewall software is on it will vary with that. You need to find out what firewall software is on it, and then work out how to add port 80 to it to let other machines in. If its windows, chances are its part of your antivirus software, or, could even be the microsoft one. If its linux chances are its ipchains but, its a whole new area of question. – BugFinder Apr 3 '11 at 11:00
show 7 more comments

Thanks for a detailed explanation.

Just to Elaborate, in Windows, Go to Control Panel -> Firewall, in exceptions "add http and port 80". Then in Services check mark "http (web server port 80)" and "https (web server port 443)" ONLY if you need https to work also. Ok, OK, Close

Then go to any computer on network and type http://computer-name (where you change the firewall and has the xampp running on it) in your web browser and happy days :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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