XAMPP 终止工作线程 0

发布于 2024-10-09 06:17:04 字数 157 浏览 0 评论 0原文

我正在 Windows XP 中使用 XAMPP 服务器运行 PHP 应用程序。昨天还工作正常,但突然开始显示错误:“正在终止工作线程 0 并正在终止工作线程 1”。有人知道出了什么问题吗?您能建议我必须采取哪些步骤来修复它吗? 当我打开它时,我的cmd提示符也消失了。

提前致谢。

Am running PHP applications using XAMPP server in Windows XP. It was working fine just yesterday, but suddenly it started showing the error: "Terminating worker thread 0 and Terminating worker thread 1". Does anybody know what went wrong? Can you suggest the steps I have to do to fix it?
My cmd prompt is also disappearing when I open it.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

惯饮孤独 2024-10-16 06:17:04

这意味着你有另一个网络服务器打开......
就我而言,当我遇到这个问题时,我使用端口 80 打开了 Skype。
要解决此问题,您可以尝试关闭 Skype,然后尝试或转到 Skype 设置、连接,并禁用显示以下内容的复选框:“使用端口 80 和 443 作为传入连接的替代方案”请参阅此线程:http://www.mydigitallife.info/2008/12/03/disable-skype-from-using-opening-and-listening-on-port-80-and-443-on-local-computer/

It means you have another web server open....
In my case when I faced that issue, I had the Skype opened using port 80.
To solve this issue, you can try closing Skype and try or go to Skype settings, connection, and disable the checkbox that says: "Use port 80 and 443 as an alternatives for incoming connections" See this thread: http://www.mydigitallife.info/2008/12/03/disable-skype-from-using-opening-and-listening-on-port-80-and-443-on-local-computer/

疯到世界奔溃 2024-10-16 06:17:04

单击xampp控制面板上的按钮“检查端口”,
这将显示通过端口 80 运行的内容,该端口是 apache 默认使用的端口。当 Skype apache 正常运行后,我就通过端口 80 运行 Skype。

谢谢

Click the button on the xampp control panel "check ports",
this will show you whats running through port 80, the same port that apache uses by default. I had Skype running through port 80 as soon as I quite Skype apache ran normally.

Thanks

北斗星光 2024-10-16 06:17:04

在您的 apache conf 文件夹中找到此文件:httpd-vhosts
检查一下:

<VirtualHost *:80>
ServerName localhost
DocumentRoot "C:/xampp/htdocs"
<Directory "C:/xampp/htdocs">
    Allowoverride All
    order deny,allow
    allow from all
</Directory>

也许你在这里有错误的代码;)这是我文件中的正确代码

Find this file in your apache conf folder : httpd-vhosts
Check this :

<VirtualHost *:80>
ServerName localhost
DocumentRoot "C:/xampp/htdocs"
<Directory "C:/xampp/htdocs">
    Allowoverride All
    order deny,allow
    allow from all
</Directory>

maybe you have wrong code here ;) This is corect code in my file

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文