在Apache上更改端口不起作用(使用IZ-WAMP)

时间:2017-11-12 07:30:21

标签: php apache wamp

我在本地使用IZ-WAMP https://sourceforge.net/projects/iz-wamp/进行PHP / Wordpress。

在托盘菜单中,可以访问httpd.conf

我用

将端口更改为80

定义IZ_WAMP_HTTP_PORT" 80"

但重新启动Apache后,localhost不再工作了。

回答后更新:我看不到任何应用程序使用的任何端口80,对于httpd.exe,我只能看到" http"这很奇怪。

2 个答案:

答案 0 :(得分:1)

我是来自法国的IZ-WAMP的创造者。 您可以转到IZ-WAMP菜单,“Administration / Systems infomations / TCPView”。然后转到“本地端口”列以查看哪个进程使用“http”端口。 还要检查防火墙是否阻止“Apache”应用程序或“http”端口。 另请注意,安装IZ-WAMP时,如果已使用端口“80”,则会为您配置端口“8080”。在安装过程中一切都说了。 最好的问候。

答案 1 :(得分:1)

好的,问题解决了,很好!

如何将IZ-WAMP Wordpress端口8080更改为80:

1 - 转到http://localhost:8080/wordpress检查它是否正常

2 - 转到http://localhost:8080/adminer(或通过de IZ-WAMP菜单“MySQL / Adminer”)

3 - 选择“wordpress”数据库

4变化值:

update wp_options set optionvalue='http://localhost' where option_name='siteurl';

5变化值:

update wp_options set optionvalue='http://localhost' where option_name='home';

6“更改”httpd.conf“文件(或通过de IZ-WAMP菜单”管理/配置文件“)

[before] Define IZ_WAMP_HTTP_PORT   "8080"

[after]  Define IZ_WAMP_HTTP_PORT   "80"

通过IZ-WAMP菜单“重新启动全部”重启7次

8 - 转到http://localhost/wordpress检查它是否正常工作