PDA

View Full Version : need help adding url to site


kwickcut
08-21-2004, 01:16 AM
i just want to thank the guys for this thread first off
https://vborg.vbsupport.ru/showthread.php?t=39482&page=1&pp=15&highlight=install+vb+computer

i am useing a win2k advanced server
i have a site running on this server www.blabla.com abd now they want to add vbulliten to it. ok hears my problem i have installed the php sql and apache with no problems at all but i can not run the IIS server at the same time and this is a must for me. when i start the apache it shuts the IIS server down i dont know why i think it is because they both want port 80. is there a way to run these applications at the same time? now i have installed vbulliten and can see it np at all on another machine that has win xp pro running on it if i tpye http://localhost/vbulliten in inretnet explorer. now if i can not run these apts on the same server how do i add the url to the vbulliten site so you can see it by typing www.blabla.com/forums ?? thanks for any input


kwick

Davey
08-21-2004, 02:26 AM
I think this has been addressed before somewhere. Both applications cannot run from the same port because there will be conflicts. You need to change one of the applications ports from 80 and leave the other at 80. Both cannot be the same.

kwickcut
08-21-2004, 02:29 AM
thanks Davey i have tryed this and i still have the same problem i have changed the IIS to another port and started apache and same thing then i tryed to change the apache but was not to sure how to thanks

kwick

kwickcut
08-21-2004, 07:53 PM
this is what i have in the httpd.conf file in apache
# 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

# 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