gpt4 book ai didi

php - http.exe、Apache、Xampp 使用端口 443

转载 作者:行者123 更新时间:2023-12-05 09:23:27 32 4
gpt4 key购买 nike

我在使用 Xampp 时遇到问题。它不执行我的 php 脚本。当我打开 php 文件时,php 代码出现在浏览器中。
当我打开 Xampp 时,它有这些红线:

Apache Service detected with wrong path
11:53:25 PM [Apache] Change XAMPP Apache settings or
11:53:25 PM [Apache] Uninstall/disable the other service manually first
11:53:25 PM [Apache] Found Path: ERROR: Not Able To Open Service Manager
11:53:25 PM [Apache] Expected Path: "c:\xampp\apache\bin\httpd.exe" -k runservice
11:53:25 PM [Apache] Problem detected!
11:53:25 PM [Apache] Port 443 in use by "httpd.exe"!
11:53:25 PM [Apache] Apache WILL NOT start without the configured ports free!
11:53:25 PM [Apache] You need to uninstall/disable/reconfigure the blocking application
11:53:25 PM [Apache] or reconfigure Apache to listen on a different port

请帮帮我?我该怎么办?请....提前致谢

最佳答案

引用这个Q

或者引用这个page :

解决此 XAMPP 问题的最简单方法是关闭 Skype,然后重新启动 XAMPP 控制面板。但这不是明智的解决方案。

那么如何解决这个端口被占用的问题呢?在 Skype Options: [Connection] 中,有一个标记为Use port 80 and 443 as alternatives for incoming connections 的复选框。

这是根本问题,所以只需清除/取消选中它并保存即可。您可能需要重新启动 Skype。

重新启动您的 XAMPP 控制面板,错误消息现在消失了!尝试启动Apache,成功。

如果该端口未被 Skype 使用,而被其他应用程序(例如 TeamViewer 或任何其他应用程序使用)怎么办?如果是这样,那么 XAMPP 必须使用另一个端口。

如何在 XAMPP 中更改 Apache 默认端口?

  • 在 XAMPP 控制面板的 Apache 下,点击配置按钮,然后选择 Apache (httpd.conf)。
  • 在 httpd.conf 文件中,找到这样的行

    Listen 80
  • 并将 80 更改为您想要的任何数字/端口。在这个例子中我正在使用端口 8080。

    Listen 8080
  • 还是从 httpd.conf 文件中,找到另一行说

    ServerName localhost:80
  • 并将 80 更改为 8080。

    ServerName localhost:8080
  • 下一步,仍然是在 XAMPP 控制面板中,在 Apache 下,单击再次配置按钮,但这次选择 Apache(httpd-ssl.conf)。在 httpd-ssl.conf 文件中,找到显示

    的行
    Listen 443
  • 并将 443 更改为您想要的任何数字/端口。我将使用 4433作为新的端口号。

    Listen 4433
  • 还是从 httpd-ssl.conf 文件中,找到另一行说

    <VirtualHost _default_:443>

    ServerName localhost:443
  • 并将 443 更改为 4433。

    <VirtualHost _default_:4433>

    ServerName localhost:4433

记住在您进行一些更改后保存httpd.conf 文件和httpd-ssl.conf

现在是时候在 XAMPP 控制面板中启动我们的 Apache 了。如果您在编辑这些文件方面做得很好,您应该会看到 Apache 正在运行并且端口号已更改为 80804433

关于php - http.exe、Apache、Xampp 使用端口 443,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21565432/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com