I have a feeling this question is an age long one. Please forgive me:D
I have IIS and Apache on my computer. Apache would refuse to run unless I stop IIS. I had tried changing the default port number of Apache from 80 to 8080 in the httpd.conf file but no dice. In fact Apache would still not run. What is it am I doing wrong? Below are examples of the edits I did to the conf. file.
# If your host doesn't have a registered DNS name, enter its IP address here.
#
ServerName localhost:80
Changed the above to
ServerName localhost:8080
AND
# Change this to Listen on specific IP addresses as shown below #to prevent Apache from glomming onto all bound IP addresses #(0.0.0.0)
#
#Listen 12.34.56.78:80
Listen 80
TO
# Change this to Listen on specific IP addresses as shown below #to prevent Apache from glomming onto all bound IP addresses #(0.0.0.0)
#Listen 12.34.56.78:80
Listen 8080
And still no dice!
Even changing the port numbers from the IIS side would still not make apache run unless IIS is stopped all together! Any help would be appreciated!:sweat: