views:

1458

answers:

6

I am running a server on Windows XP SP2 computer using EasyPhp. Lets call it computer_1. The ip address of computer is 192.168.1.2

Now I have another computer ( computer_2) on the lan with ip address 192.168.1.3

I want to access the site on computer_1 from computer_2.

comupter_2 can ping computer_1 (ping 192.168.1.2 works)

But when I type http://192.168.1.2 in the browser of computer_2, nothing happens.

I want to access the site on comupter_1 from computer_2

Please help.

A: 

Please reformulate your question. Your first sentence does not make sense. .

To address your question:

http://ip.of.server/ should work in principle. However, depending on configuration (virtual hosting) only using the correct host name may work.

At any rate, if you have a network, you should properly configure DNS, otherwise all kinds of problems (such as this) may occur.

sleske
reformulated the question
A: 

You might also want to check your server configuration - sometimes the default for development type servers is to only accept connections from localhost.

Eric Petroelje
and how will I do that ?
Thats determined by the "Listen" setting (see above).Listen 127.0.0.l:80-> only localhostListen *:80-> all network interfaces
sleske
+2  A: 

In yout httpd.conf make sure you have:

Listen *:80

And if you are using VirtualHosts then set them up like this:

NameVirtualHost *
<VirtualHost *>
   ...
</VirtualHost>
duckyflip
Thanks a lot. This helped. I got it running. :)
A: 

Hi,

am not able to open http:192.168.1.68 of comp1 from LAN connected comp2. using windows XP with wamp installed

A: 

Check the Windows firewall settings.

codeape
A: 

Where is the DNS typically located? the router? is it another application I was supposed to install? I don't see anything but DDNS options in my router which is a little different.

Brad MacGregor
oops, this isn't an answer at all, but rather a question. I apologize.
Brad MacGregor