Page 1 of 1

Need help izzy.. I need to change my port for xampp too..

PostPosted: 08. November 2006 15:52
by SIN982
When i go in httpd i change ip to my ip xxx.xxx.xxx.xxx:5010 then listen 5010 but when i try to restart my xampp apache it won't let me start it back up what am i doing wrong?

Re: Need help izzy.. I need to change my port for xampp too.

PostPosted: 08. November 2006 22:14
by Izzy
SIN982 wrote:When i go in httpd i change ip to my ip xxx.xxx.xxx.xxx:5010 then listen 5010 but when i try to restart my xampp apache it won't let me start it back up what am i doing wrong?


Try this:
Code: Select all
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# 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


Or this:
Code: Select all
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# 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

Don't uncomment both the Listen lines, only one or the other. Change the IP number to your own.