[实践OK]注意wampserver运行时的Lamp名称变了,wamp运行站点出现Internal Server Error解决方法,及Apache:系统找不到指定的文件: No installed service named"Apache2",wamp在localhost和phpmyadmin里出现could not execute run action问题
wamp套件注册服务是:
服务名称:wampapache
可执行的文件路径:"d:\wamp\bin\apache\apache2.2.22\bin\httpd.exe" -k runservice
服务名称:wampmysqld
可执行的文件路径:d:\wamp\bin\mysql\mysql5.5.24\bin\mysqld.exe wampmysqld
所以,你在资源管理器里也就会以wamp进行查找进程,而不是以apache ,mysql来查找。
————————————————————————————————————————————————————
Windows下安装:wampserver. 后出现,international error...
启动apache时系统提示错误:[error]<os 2>系统找不到指定文件 no installed service named "apache2"
发生此错误的原因是Apache的目录更改了,或者注册表中Apache2服务的信息被更改。
与我之前一篇文章写的Apache出错的原因有些不同:Apache:系统找不到指定的文件: No installed ConfigArgs for the service "Apache2"
反正就是注册表中的路径和Apache实际的路径对不上号,所以提示“系统找不到指定文件”。
解决方案:重新安装apache;
在命令行cmd中cd至Apache所有的目录(运行cmd的时候要以管理员的身份运行才可以)
cd apache所有目录
cd bin
apache -k install
apache -k start
启动ok!
还原一次ghost的win7后也出现这个问题,带得重新install一次:
D:\wamp\bin\apache\apache2.2.22\bin>httpd.exe -k install
Installing the Apache2.2 service
The Apache2.2 service is successfully installed.
Testing httpd.conf....
转自:
http://blog.zxlm.cn/2007/12/apache%E7%B3%BB%E7%BB%9F%E6%89%BE%E4%B8%8D%E5%88%B0%E6%8C%87%E5%AE%9A%E7%9A%84%E6%96%87%E4%BB%B6-no-installed-service-namedapache2.html
后来依旧没有Ok,最后这样才Ok的:
最近PP小编在做一个PHP的网站,由于重装系统后,电脑的PHP环境需要重新配置,但是为了方便,直接下载了WAMP进行安装,可是出现了为Internal Server Error的内部服务器错误,错误如下:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
以上提示大概意思为PHP服务器遇到内部错误或配置错误,无法完成请求,请联系服务器管理员等等废话。最后可以在APACHE服务器中查看日志。
PP小编问了一下度哥“装WAMP提示Internal Server Error”,终于找到了解决的办法。
Internal Server Error原因:是因为在我的网站目录下面有.htaccess文件,而Apache没有开启rewrite功能,所以才导致了Internal Server Error错误。
Internal Server Error解决方法:在右下角的WAMP5的图标中,单击选择“Apache Modles”,在模块中选择“rewrite_module”,然后重启一下Apache就OK啦!
来自:http://www.lao8.org/html/8/2011-8-18/wamp_htaccess.html
WampServer Version 2.2打开localhost,phpMyAdmin,提示:系统找不到该文件??
http://www.wampserver.com (因ghost还原,ghost之前没有ghost进去)
解决办法:重新安装是不行的,问题出现在,默认浏览器的选取上(因Firefox我重新安装了一次,位置变了)
navigator = "D:\Program Files\Firefox\firefox.exe"
D:\Program Files\Mozilla Firefox\firefox.exe
---------------------------------------------------------------------------------------------------------------------------------------------------
wamp出现could not execute run action问题
上午在安装了Chrome Dev后为了方便将原来的ChromePlus安装目录下的chrome.exe改名成为了chromeplus.exe,而wamp先前安装时选择的默认浏览器就是通过地址定位手动选择的chromeplus,这样修改后必定会出现问题。
几经周折,终于找到了解决方法:
查看wamp安装目录下wampmanager.ini和wampmanager.conf两个文件,核对对应的条目。在D:\wamp\wampmanager.conf中有这么一行:
navigator = "D:\Program Files\ChromePlus\chrome.exe"
改成chromeplus.exe即可,然后再到D:\wamp\wampmanager.ini文件里,ctrl+F搜索phpMyAdmin字样,也很快找到对应的条目,将[Menu.Left]字段下的phpMyAdmin对应浏览器路径修改一下,然后重启wamp,OK,熟悉的淡蓝色界面又出现了。
来自:http://blog.sina.com.cn/s/blog_4a60ba9c0100zzlr.html
服务名称:wampapache
可执行的文件路径:"d:\wamp\bin\apache\apache2.2.22\bin\httpd.exe" -k runservice
服务名称:wampmysqld
可执行的文件路径:d:\wamp\bin\mysql\mysql5.5.24\bin\mysqld.exe wampmysqld
所以,你在资源管理器里也就会以wamp进行查找进程,而不是以apache ,mysql来查找。
————————————————————————————————————————————————————
Windows下安装:wampserver. 后出现,international error...
启动apache时系统提示错误:[error]<os 2>系统找不到指定文件 no installed service named "apache2"
发生此错误的原因是Apache的目录更改了,或者注册表中Apache2服务的信息被更改。
与我之前一篇文章写的Apache出错的原因有些不同:Apache:系统找不到指定的文件: No installed ConfigArgs for the service "Apache2"
反正就是注册表中的路径和Apache实际的路径对不上号,所以提示“系统找不到指定文件”。
解决方案:重新安装apache;
在命令行cmd中cd至Apache所有的目录(运行cmd的时候要以管理员的身份运行才可以)
cd apache所有目录
cd bin
apache -k install
apache -k start
启动ok!
还原一次ghost的win7后也出现这个问题,带得重新install一次:
D:\wamp\bin\apache\apache2.2.22\bin>httpd.exe -k install
Installing the Apache2.2 service
The Apache2.2 service is successfully installed.
Testing httpd.conf....
转自:
http://blog.zxlm.cn/2007/12/apache%E7%B3%BB%E7%BB%9F%E6%89%BE%E4%B8%8D%E5%88%B0%E6%8C%87%E5%AE%9A%E7%9A%84%E6%96%87%E4%BB%B6-no-installed-service-namedapache2.html
后来依旧没有Ok,最后这样才Ok的:
最近PP小编在做一个PHP的网站,由于重装系统后,电脑的PHP环境需要重新配置,但是为了方便,直接下载了WAMP进行安装,可是出现了为Internal Server Error的内部服务器错误,错误如下:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
以上提示大概意思为PHP服务器遇到内部错误或配置错误,无法完成请求,请联系服务器管理员等等废话。最后可以在APACHE服务器中查看日志。
PP小编问了一下度哥“装WAMP提示Internal Server Error”,终于找到了解决的办法。
Internal Server Error原因:是因为在我的网站目录下面有.htaccess文件,而Apache没有开启rewrite功能,所以才导致了Internal Server Error错误。
Internal Server Error解决方法:在右下角的WAMP5的图标中,单击选择“Apache Modles”,在模块中选择“rewrite_module”,然后重启一下Apache就OK啦!
来自:http://www.lao8.org/html/8/2011-8-18/wamp_htaccess.html
WampServer Version 2.2打开localhost,phpMyAdmin,提示:系统找不到该文件??
http://www.wampserver.com (因ghost还原,ghost之前没有ghost进去)
解决办法:重新安装是不行的,问题出现在,默认浏览器的选取上(因Firefox我重新安装了一次,位置变了)
navigator = "D:\Program Files\Firefox\firefox.exe"
D:\Program Files\Mozilla Firefox\firefox.exe
---------------------------------------------------------------------------------------------------------------------------------------------------
wamp出现could not execute run action问题
上午在安装了Chrome Dev后为了方便将原来的ChromePlus安装目录下的chrome.exe改名成为了chromeplus.exe,而wamp先前安装时选择的默认浏览器就是通过地址定位手动选择的chromeplus,这样修改后必定会出现问题。
几经周折,终于找到了解决方法:
查看wamp安装目录下wampmanager.ini和wampmanager.conf两个文件,核对对应的条目。在D:\wamp\wampmanager.conf中有这么一行:
navigator = "D:\Program Files\ChromePlus\chrome.exe"
改成chromeplus.exe即可,然后再到D:\wamp\wampmanager.ini文件里,ctrl+F搜索phpMyAdmin字样,也很快找到对应的条目,将[Menu.Left]字段下的phpMyAdmin对应浏览器路径修改一下,然后重启wamp,OK,熟悉的淡蓝色界面又出现了。
来自:http://blog.sina.com.cn/s/blog_4a60ba9c0100zzlr.html
作者:jackxiang@向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除
地址:http://jackxiang.com/post/5859/
版权所有。转载时必须以链接形式注明作者和原始出处及本声明!
最后编辑: jackxiang 编辑于2013-8-9 15:37
评论列表