views:

44

answers:

3

I would like to briefly open up my computer and allow my business partener to see what I've been developing on the my localhost. I understand there are probably some security issues with this but I only want to open up my computer for a few minutes...

What do i need to setup on the following interfaces to do this?

  1. my wireless router
  2. windows7
  3. WAMP
A: 

If your Apache server is up and running already on your localhost, then you should just be able to set up a route within your router to point at your computer for traffic coming IN on port 80.

EDIT: I just checked my router settings, and it calls this 'services'. It allows incoming requests on a specific port to be listened to, and forwards the request onto a specific computer (by IP) attached to the router.

You would be better asking this question on superuser.com

Codemwnci
A: 

To allow external connections to your server you have to restart WAMP in online mode.

Left-click the WAMP icon and select Put Online.

Wait for the icon status to change to white again.

Enter your IP into your web browser bar and hit enter.

If you get the same forbidden page as before hit F5 to let the browser load the newest version.

If it's still not working you probably have to enable port 80 forwarding in your router configuration.

Finally your buddy can see your homepage!

Orbit
+1  A: 

This works very easily for me on WinXP.

  • Fire up the command prompt and enter ipconfig /all - get your local IP address
  • Log into your router and set up port forwarding to forward HTTP to your local IP address
  • Click on your WAMP icon and click again on "Put Online"
  • Go to your remote IP (you can find it somewhere like http://www.whatsmyip.org/)
seengee
in windows7, to get local ip. go Win->cmd->ipcib->"ipconfig /all". it's the IPv4 Address...
Haroldo