Port 80 in use by ""C:\Apache24\bin\httpd.exe" -k runservice" with PID 30352! Apache WILL NOT start without the configured ports free! You need to uninstall/disable/reconfigure the blocking application or reconfigure Apache and the Control Panel to listen on a different port
Edit : I've tried all solutions I found in StackOverflow but it doesn't work!!
CodePudding user response:
On the control panel, change the port to another port not being used
CodePudding user response:
You have apache serving on port 80 already as a separate program which is not xampp. This seems to be Apache24 based on your file path. If you want to use the xampp version you can turn off your current apache instance. If you know that you want this alternative apache to be turned off, you can kill it with the command below from CMD.
TASKKILL /F /IM httpd.exe /T
Once it's gone, you can turn on xampp's apache and it will bind to port 80 by default.
Happy Coding!