this is what i have in the httpd.conf file in apache
Code:
# Port: The port to which the standalone server listens. Certain firewall
# products must be configured before Apache can listen to a specific port.
# Other running httpd servers will also interfere with this port. Disable
# all firewall, security, and other services if you encounter problems.
# To help diagnose problems use the Windows NT command NETSTAT -a
#
Port 80
##
## SSL Support
##
## When we also provide SSL we have to listen to the
## standard HTTP port (see above) and to the HTTPS port
##
#<IfDefine SSL>
#Listen 80
#Listen 443
#</IfDefine>
and this is what i have changed it to
Code:
# Port: The port to which the standalone server listens. Certain firewall
# products must be configured before Apache can listen to a specific port.
# Other running httpd servers will also interfere with this port. Disable
# all firewall, security, and other services if you encounter problems.
# To help diagnose problems use the Windows NT command NETSTAT -a
#
Port 1080
##
## SSL Support
##
## When we also provide SSL we have to listen to the
## standard HTTP port (see above) and to the HTTPS port
##
#<IfDefine SSL>
#Listen 1080
#Listen 8000
#</IfDefine>
now that i have done that i can run the apache and IIS server at the same time with np but the problem that i have now is that i cant see
http://localhost any ideas thanks
kwick