XAMPP PORT 80 is Busy / EasyPHP error in Apache configuration file:

前端 未结 13 2266
渐次进展
渐次进展 2020-12-03 01:54

This problem has completely shot my entire day. I reformatted my old windows XP comp and tried installing XAMPP only to find that when i try to start Apache xampp claims por

13条回答
  •  日久生厌
    2020-12-03 02:01

    Only one process can use port 80 at a time. Port 80 is the default port for web servers, so when you navigate to websites over HTTP, you are actually navigating to that server's port 80 by default (when you use HTTPS, the port is 443).

    You can try to hunt down all the programs that are running on port 80, but there's an easier way that will work for development. When running XAMPP, click "Config" under "Apache". Replace Listen 80 with Listen 8080 and ServerName localhost:80 to ServerName localhost:8080.

    Then, when you want to look at your masterpiece, navigate to http://localhost:8080 in your browser.

提交回复
热议问题