I'm currently working on a project and I would like to test it out on two laptops at home where one laptop connects to the localhost on the other. I am using XAMPP. How do I do this?
|
|
|
That's definitely possible. We'll take a general case with Apache here. Let's say you're a big Symfony2 fan and you would like to access your symfony website at General Sketch:
1 Set up a virtual host: You first need to set up a virtual host in your apache
2 Configure your hosts file: For the client (your browser in that case) to understand what
From now on, everytime you type symfony.local on this computer, your computer will use the loopback interface to connect to symfony.local. It will understand that you want to work on localhost (127.0.0.1). 3 Access We finally arrive to your main question which is:
Well this is now easy! We just need to tell the other computers how they could find 3a Get the IP address of the computer hosting the website: We first need to know the IP address on the computer that hosts the website (the one we've been working on since the very beginning). In the terminal, on MAC and LINUX type 3b Edit the hosts file on the computer you are trying to access the website from.: Again, on MAC, this file is in
4 Finally enjoy the results in your browser You can now go into your browser and type |
||||
|
|
|
it may be that your firewalls are preventing you from accessing the localhost's webserver. If it does not work, try to ping your PC from your laptop: |
||||
|
|
You cannot connect to If you want to connect to another machine on a network, you need to replace localhost with the network name (or IP address) of the machine in question. |
|||||
|
|
Provided both machines are in the same workgroup, open Then, on the machine you want to connect with, use That should do it. |
|||
|
|

