为什么WAMP不工作?

我的WAMP图标总是黄色的。 端口80没有使用,我不使用Skype。 这些是我得到的错误消息:

[Wed Sep 28 19:21:17 2011] [crit] (OS 6)The handle is invalid. : master_main: create child process failed. Exiting. [Wed Sep 28 19:21:47 2011] [notice] Parent: Forcing termination of child process 36 [Wed Sep 28 19:26:15 2011] [notice] Apache/2.2.8 (Win32) PHP/5.2.6 configured -- resuming normal operations [Wed Sep 28 19:26:15 2011] [notice] Server built: Jan 18 2008 00:37:19 [Wed Sep 28 19:26:15 2011] [notice] Parent: Created child process 3344 [Wed Sep 28 19:26:15 2011] [crit] (OS 10050)A socket operation encountered a dead network. : alloc_listener: failed to get a socket for (null) Syntax error on line 46 of C:/wamp/bin/apache/apache2.2.8/conf/httpd.conf: Listen setup failed [Wed Sep 28 19:26:15 2011] [crit] (OS 6)The handle is invalid. : master_main: create child process failed. Exiting. [Wed Sep 28 19:26:45 2011] [notice] Parent: Forcing termination of child process 36 

WAMP应用程序有什么问题?

您的httpd.conf文件中显示您的Listen语句不正确。 一般来说,这将是forms

 Listen 80 

意味着在所有可用的IP地址上监听端口80。

 Listen 127.0.0.1:80 

只能在IP回送接口上收听等等。

C:/wamp/bin/apache/apache2.2.8/conf/httpd.conf中第46行的语法错误:监听安装失败

你的httpd.conf文件有一个语法错误,阻止Apache启动。

发布文件的内容,我们可以更好地协助。