I am getting following console logs:
1:14:33 PM [apache] Possible problem detected!
1:14:33 PM [apache] Port 80 in use by "c:\program files (x86)\skype\phone\skype.exe"!
1:14:33 PM [apache] Possible problem detected!
1:14:33 PM [apache] Port 443 in use by "c:\program files (x86)\skype\phone\skype.exe"!
1:14:33 PM [main] Starting Check-Timer
1:14:33 PM [main] Control Panel Ready
1:15:10 PM [apache] Starting apache app...
1:15:11 PM [apache] Status change detected: running
1:15:11 PM [apache] Status change detected: stopped
It says 'Status change detected: running' to 'stopped' right away. I have tried to:
- Turn Off Windows Firewall for internal networks
- Change Port 80 to 99 in httpd.conf file at two locations Listen:80 and ServerName localhost:80
- Change Port 443 to 445 in httpd.conf file at same two locations.
- Apache server is not installed as a Windows service on my machine.
- There is no error or access log generated for today's date.
go in skype->tools->options->advanced and UN-check use ports 80 & 443.
Please update your post with output of the following command, don't forget to correct the path :
I think now its not the port conflict issue as you have changed the port.
By the way you can change the settings in skype for not using port 80 and 443, in new version there should be some changes but you should be able to find it. :)
Opened Skype setting and unchecked the option which says 'Use port 80 as incoming port' then I had to start XAMPP server 'as a Administrator'.
Goto
Skype -> Tools -> Options -> Advanced -> Connection
After that, restart your Skype.
It says that skype is using port 80. I would disable skype and then start your web server.
This happened to me while collaborating with someone over Skype, so closing Skype was not an option.
One possible solution is changing the port XAMPP is using for Apache.
1. Change Apache (httpd.conf)
Go to the XAMPP Control Panel, click Config for the Apache module and then Apache (httpd.conf).
This will now open the configuration file in the editor that is configured in the XAMPP settings (Windows default is notepad.exe). Open the search tool and search for
80
. There should be two lines containing 80 as in the port number 80:Now replace
80
with an open port. I used8080
.2. Change Apache (httpd-ssl.conf)
The same procedure needs to be repeated with the SSL configuration. Repeat the steps above but go to Apache (httpd-ssl.conf). Replace the port numbers in the following lines:
I choose
4433
.Done. Click Start for Apache and Apache should start fine. On my end, the errors would still show up, though.