分类: 学习预览模式: 普通 | 列表
前几天装一个linux 企业版5.0安装了apache,打开测试页面的时候出现如下错误:


引用内容 引用内容
Forbidden
You don't have permission to access /index.html on this server.



开始我以为我配置出错,花半天时间都没有搞定,今天终于搞定了.

查看更多...

Tags: Apache

分类:学习 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 1214
09-01
28

Server is currently unavailable or down for mainte

无意发现我的ISS启动不了,地址中输入http://localhost:80居然出现
Server is currently unavailable or down for maintenance
吓我一跳.还以为端口冲突.因为之前装过php-5.2.5-win32-installer.msi
我设为默认端口80,之后被卸载,还是这样.

经仔细排查外,发现之前在做jsp项目的时候,用过resin服务器.文件里有个setup.exe中有设置iis/pws的项.只要装其remove掉就行.如果你也出现此情况,试试看吧!

Tags: resin IIS PHP

分类:学习 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 565

reference: http://blog.csdn.net/qjyong/archive/2008/11/16/3311688.aspx

能解决这个问题还真是要感谢 http://blog.csdn.net/qjyong/archive/2008/11/16/3311688.aspx这篇文章的作者qjyong。参照他的方法我在SSH中完成了不同方法验证需求不同的操作。

1. 自定义的FileChecks类。这里对qjyong的FileChecks稍微做了一下改动。应该使用SSH框架以后,使用的Action都写成org.springframework.web.struts.DelegatingActionProxy。所以在这种情况下Class.forName(className).newInstance() instanceof DispatchAction永远都为false.下面只把改动的代码注释出来,其它的都参考qjyong的。

查看更多...

Tags: Validator

分类:学习 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 475
Tomcat 6, java.lang.SecurityException: Servlet of class org.apache.catalina.servlets.InvokerServlet is privileged and cannot b

<Context reloadable="true" privileged="true">

The invoker servlet lets you run servlets without first making changes to your Web application's deployment descriptor (i.e., the WEB-INF/web.xml file). Instead, you just drop your servlet into WEB-INF/classes and use the URL http://host/servlet/ServletName (or http://host/webAppName/servlet/ServletName once you start using your own Web applications. The invoker servlet is extremely convenient when you are learning and even when you are testing things doing your initial development. You almost certainly want to enable it when learning, but you should disable it again before deploying any real applications.

To enable the invoker servlet, uncomment the following servlet and servlet-mapping elements in install_dir/conf/web.xml. Do not confuse this Apache Tomcat-specific web.xml file with the standard one that goes in the WEB-INF directory of each Web application.

<servlet>

查看更多...

Tags: Tomcat 6

分类:学习 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 895
Filter of class org.apache.catalina.ssi.SSIFilter is privileged and cannot be loaded by this web application

tomcat版本5.X
1、将tomcat 的server\lib目录下servlets-ssi.renametojar文件重命名为servlets-ssi.jar。

      2、修改tomcat的 conf目录下web.xml文件,找到如下代码:

   /*
      <servlet>

查看更多...

Tags: TOMCAT

分类:学习 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 800