Getting WAMP Online
Posted by: Stimulus (---.hsd1.nj.comcast.net)
Date: March 01, 2008 04:18AM

Hey guys, im a total n00b at this stuff

I forwarded my ports this way:

The server is my IPv4 address, and i called it WAMP and the start and end ports are 80

when i put wamp online, i cannot access the stuff via my external IP

please help!!!!

Options: ReplyQuote
Re: Getting WAMP Online
Posted by: yfastud (Moderator)
Date: March 01, 2008 04:27AM

Check Setup LAN & Worldwide Access guide on my personal website

Have fun,

FREE One A Day
FREE Photo
FREE Games
FREE Websites
FREE Portable GPS
FREE WAMP Guides

Options: ReplyQuote
Re: Getting WAMP Online
Posted by: Stimulus (---.hsd1.nj.comcast.net)
Date: March 01, 2008 05:14PM

Unfortunately, I am still unable to access it through my external ip. Only by my IPv4 address can I access it out of localhost

Options: ReplyQuote
Re: Getting WAMP Online
Posted by: hambuler (---.cpe.net.cable.rogers.com)
Date: March 01, 2008 05:38PM

You need to enable the virtual host file in httpd.conf. The file name is httpd-vhosts.conf in extra folder. Then edit that file to suite your requirement. The sample of VirtualHost is:

NameVirtualHost 192.168.1.152:80
#Replace the IP add with your actual local IP address

<VirtualHost 192.168.1.152:80>
ServerAdmin webmaster@yourwebsitename.com
DocumentRoot "D:/yoursiterootDiretory/"
ServerName www.yourwebsitename.com
ServerAlias yourwebsitename
<Directory "D:/yoursiterootDiretory/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
</Directory>
ErrorLog "logs/yourwebsiteName_error.log"
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel debug
CustomLog "logs/ourwebsiteName_access.log" combined
</VirtualHost>

Options: ReplyQuote
Re: Getting WAMP Online
Posted by: yfastud (Moderator)
Date: March 01, 2008 09:22PM


Options: ReplyQuote


Sorry, only registered users may post in this forum.