Posted by:
ljzxtww
(---.dsl.irvnca.pacbell.net)
not working,,
I get everything very good.
I turn Off all windows firewall and McAfee firewall. And Add port 80 in windows firewall.
You look the infomation for this site:
[
www.no-ip.com] . is right to add the port 80 and other thing
My IP is: [
71.137.119.27] ( this is my IP) can You viste my IP in you computer
I turn all firewall and McAfee firewall.
You said I get wrong or what
dear sir Do I Edit the http.cof for inmation here
______________________________________________
now open up your httpd.conf file in notepad. find
Listen 80
below it add:
Listen 81
Listen 8080
now search for this:
#NameVirtualHost *:80
change it to this:
NameVirtualHost your.ip.address.here:80
NameVirtualHost your.ip.address.here:81
NameVirtualHost your.ip.address.here:8080
<VirtualHost your.ip.address.here:80>
ServerName localhost
DocumentRoot c:\wamp\www\users\website1\public_html
ErrorLog c:\wamp\www\users\website1\logs\error.log
CustomLog c:\wamp\www\users\website1\logs\access.log common
<Directory c:\wamp\www\users\website1\public_html>
Options Indexes FollowSymLinks Includes
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Directory>
</VirtualHost>
<VirtualHost your.ip.address.here:81>
ServerName localhost
DocumentRoot c:\wamp\www\users\website2\public_html
ErrorLog c:\wamp\www\users\website2\logs\error.log
CustomLog c:\wamp\www\users\website2\logs\access.log common
<Directory c:\wamp\www\users\website2\public_html>
Options Indexes FollowSymLinks Includes
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Directory>
</VirtualHost>
<VirtualHost your.ip.address.here:8080>
ServerName localhost
DocumentRoot c:\wamp\www\users\website3\public_html
ErrorLog c:\wamp\www\users\website3\logs\error.log
CustomLog c:\wamp\www\users\website3\logs\access.log common
<Directory c:\wamp\www\users\website3\public_html>
Options Indexes FollowSymLinks Includes
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Directory>
</VirtualHost>
Post Edited (12-31-06 02:52)