<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></title> 
<link>http://jackxiang.com/index.php</link> 
<description><![CDATA[赢在IT，Playin' with IT,Focus on Killer Application,Marketing Meets Technology.]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></copyright>
<item>
<link>http://jackxiang.com/post//</link>
<title><![CDATA[[实践OK]wamp问题之“Could not execute menu item (internal error) [Exception] ”,安装完wamp 弹出提示系统找不到指定的路径,怎么解决？]]></title> 
<author>jack &lt;xdy108@126.com&gt;</author>
<category><![CDATA[WEB2.0]]></category>
<pubDate>Wed, 24 Jun 2015 06:11:00 +0000</pubDate> 
<guid>http://jackxiang.com/post//</guid> 
<description>
<![CDATA[ 
	表现两个现象：<br/>现象一）services.msc里，wampapache服务，wamp界面是在这儿读取这个配置的，D:&#92;wamp&#92;bin&#92;apache&#92;apache2.2.22&#92;wampserver.conf：<br/>&quot;d:&#92;wamp&#92;bin&#92;apache&#92;apache2.2.22&#92;bin&#92;httpd.exe&quot; -k runservice<br/>“Windows不能在本地计算机启动Apache2.有关更多信息，查阅系统事件日志。如果这是非Microsoft服务，请与服务厂商联系，并参考特定服务错误代码1. ”<br/>原因：有服务占用了80端口，解决办法有详细描述该问题及如何找到占用80端口的程序。<br/>现象二）我安装好Wamp5，点桌面右下角图标的localhost后启动时出了这个错误:<br/>Could not execute menu item (internal error) [Exception] Could not execute run action:系统找不到指定的文件。<br/>原因：关联浏览器找不到而已，可以在wamp目录config里配置你的浏览器地址,D:&#92;wamp&#92;wampmanager.ini :<br/>步骤一）在你所安装的wamp目录下有这个wampmanager.conf文件修改其中的navigator = &quot;E:&#92;Program Files&#92;Mozilla Firefox&#92;firefox.exe&quot;&nbsp;&nbsp; 这是我所设置的火狐浏览器你可以更改你所需要的浏览器。如果没有就增加这句。<br/>接着步骤二）再在wampmanager.ini文件下修改[Menu.Left]<br/>Type: separator; Caption: &quot;WAMP5&quot;<br/>Type: item; Caption: &quot;Localhost&quot;; Action: run; FileName: &quot;E:&#92;Program Files&#92;Mozilla Firefox&#92;firefox.exe&quot;; Parameters: &quot;http://localhost/&quot;; Glyph: 5<br/>Type: item; Caption: &quot;phpMyAdmin&quot;; Action: run; FileName: &quot;E:&#92;Program Files&#92;Mozilla Firefox&#92;firefox.exe&quot;; Parameters: &quot;http://localhost/phpmyadmin/&quot;; Glyph: 5<br/>Type: item; Caption: &quot;SQLiteManager&quot;; Action: run; FileName: &quot;E:&#92;Program Files&#92;Mozilla Firefox&#92;firefox.exe&quot;; Parameters: &quot;http://localhost/sqlitemanager/&quot;; Glyph: 5<br/>Type: item; Caption: &quot;www 目录&quot;; Action: shellexecute; FileName: &quot;e:/wamp/www&quot;; Glyph: 2<br/><br/>可以看到FileName:也是我要设置的浏览器安装目录&nbsp;&nbsp; 重启wamp试试&nbsp;&nbsp;就OK了&nbsp;&nbsp; ^ ^ 自己试过的哈<br/>————————————————————————————————————————————————————————<br/>解决方法如下：<br/>问题的原因是你的80端口被占用了，可能是iis或者迅雷等占用的，如果是这样的话你可以关闭iis的80端口或者关闭你的迅雷，<br/>或者最简单的方法是修改你的wamp5的apache默认的80端口，你可以这样“在wamp5的安装目录下找到 conf&#92;httpd.conf，搜索找到“Listen 80” 将80改成8080(或者其他端口都可以)，这样服务就正常启动了 ”<br/>访问的时候 http://localhost:8080/ 即可。<br/><br/>我是Nginx给占用了：<br/>Nginx和PHPfpm服务正在启动...<br/>PHPfpm服务启动成功!<br/>Nginx服务启动成功!<br/><br/>请按任意键继续...<br/><br/><br/>来自：http://blog.sina.com.cn/s/blog_7044b2550100w8ch.html<br/>总之是80端口给占用了，Windows下如何查看80端口被占用：netstat -ano&#124;findstr 80<br/><br/>一）通过端口反查到其进程的PID号：<br/>D:&#92;wamp&#92;logs&gt;netstat -ano&#124;findstr 0.0.0.0:80<br/>&nbsp;&nbsp;TCP&nbsp;&nbsp;&nbsp;&nbsp;0.0.0.0:80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.0.0.0:0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;LISTENING&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2008<br/>二）根据一里的PID找到进程：（Windows任务管理器--&gt;选择列--&gt;PID勾选，可能还找不到服务启动的进程，必须要勾选下面的[勾]显示所有用户的进程。）：<br/>在众多进程里按PID列排序，找到PID，也就是这个服务进程占用了80端口。<br/>——————————————————————————————————————<br/><br/>windows Linux下怎么看程序的端口,http://jackxiang.com/post/3503/ 。<br/><br/>
]]>
</description>
</item><item>
<link>http://jackxiang.com/post//#blogcomment</link>
<title><![CDATA[[评论] [实践OK]wamp问题之“Could not execute menu item (internal error) [Exception] ”,安装完wamp 弹出提示系统找不到指定的路径,怎么解决？]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://jackxiang.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>