-3

When I click on the start button, apache change status to running and then stops [1]: https://i.stack.imgur.com/BXzsJ.png

Merrin K
  • 1,602
  • 1
  • 16
  • 27
  • Re-install the apache and try – Merrin K Jun 26 '20 at 05:18
  • Check your port 80 is busy in somewhere else. I believe you're on mac os check out this answer https://stackoverflow.com/a/45051287/7698734 to verify your port 80 is not busy in somewhere else. – Hassaan Ali Jun 26 '20 at 05:30

1 Answers1

0

This problem occurs because of port conflict. You have to change the port settings from config files to solve this problem. Xampp uses port 80 and 443 for apache server by default. If you've installed Skype, then you've found your problem! Change apache's port settings to 81 and apache will work. To change the port

Go in xampp/apache/conf/httpd.conf and open it


Change Listen 80 to Listen 81 And ServerName localhost:80 to ServerName localhost:81

Miki
  • 157
  • 1
  • 8