views:

7967

answers:

3

Hi, I have XAMPP installed in local laptop. And I have a almost static ip. I would like to give the ip to other to run it from thier browser. I configured apache httpd-vhosts.conf to listen my ip address:80 and added the virtual server with the ip address and domain root to local httdocs directory and the servername as localhost. Apache doesn't start. what should I do to access my website from external computer. THnks

A: 

Are you able to reach your website on your own local machine, or does Apache not run at all?

I've never heard of an "almost static" IP before...

You'll want to set up your server to have a static IP address first. Then you need to configure your router so that any requests coming to your router's IP at a given port is directed to your server with the newly-configured static IP at another given port (80 is default).

Unless you pay for a static IP from your ISP, you'll have a dynamic one. I recommend using DynDNS (http://www.dyndns.com/), which will send updates to their service and give you a host name that acts like a true static IP, for example: john.doesntexist.org. This is all free.

Which version of Windows are you using? I could give more detailed instructions if I knew.

Cuga
I run winxp and latest xampp. My localhost is working fine. Almost static IP -> I know the isp does a dynamic ip or everytime i connect i get a new ip. but i never disconnect mostly. so the ip remains same(so static ip).As Mention I changed appache httpd-vhost configuration listen ip:80listen 80<virtual-server ip:80>documentroot "c:\xammp\htdocs"serverroot localhost</virtual-server>let me know if you need anymore info
coool
Even if you don't sign offline, your IP address will eventually expire. You could keep manually checking your IP address assigned to you, but you'd have to do this repeatedly.
Cuga
+7  A: 

First, you need to configure your computer to get a static IP from your router. Instructions for how to do this can be found: here

For example, let's say you picked the IP address 192.168.1.102. After the above step is completed, you should be able to get to the website on your local machine by going to both http://localhost and http://192.168.1.102, since your computer will now always have that IP address on your network.

If you look up your IP address (such as http://www.ip-adress.com/), the IP you see is actually the IP of your router. When your friend accesses your website, you'll give him this IP. However, you need to tell your router that when it gets a request for a webpage, forward that request to your server. This is done through port forwarding.

Two examples of how to do this can be found here and here, although the exact screens you see will vary depending on the manufacturer of your router (Google for exact instructions, if needed).

For the Linksys router I have, I enter http://192.168.1.1/, enter my username/password, Applications & Gaming tab > Port Range Forward. Enter the application name (whatever you want to call it), start port (80), end port (80), protocol (TCP), ip address (using the above example, you would enter 192.168.1.102, which is the static IP you assigned your server), and be sure to check to enable the forwarding. Restart your router and the changes should take effect.

Having done all that, your friend should now be able to access your webpage by going to his web browser on his machine and entering http://IP.address.of.your.computer (the same one you see when you go here ).

As mentioned earlier, the IP address assigned to you by your ISP will eventually change whether you sign offline or not. I strongly recommend using DynDns, which is absolutely free. You can choose a hostname at their domain (such as cuga.kicks-ass.net) and your friend can then always access your website by simply going to http://cuga.kicks-ass.net in his browser. Here is their site again: DynDns

I hope this helps.

Cuga
Yes it worked!!! I have n't changed my ip to static as lose my internet all together. Also need to check the DynDns. Appreciate your HELP.THnks
coool
A: 

I have added a complete guide for one of our members. See How to access website hosted in localhost from Internet

NeoCambell