m (moved CKFinder 2.x/Developers Guide/Java/Debugging to CKFinder 2.x/Developers Guide/Java/Troubleshooting: Article expansion) |
(Article restructured) |
||
Line 1: | Line 1: | ||
− | {{#CUSTOMTITLE: | + | {{#CUSTOMTITLE:Troubleshooting CKFinder}} |
+ | This article describes some measures that can be taken in case of problems with the CKFinder for Java application. | ||
+ | |||
+ | == Debugging CKFinder == | ||
CKFinder for Java contains a special debugging mode that makes it easier to troubleshoot the application. This mode can be turned on in the <code>WEB-INF/web.xml</code> file, by setting a new <code><init-param>debug</init-param></code> node to <code>true</code>. | CKFinder for Java contains a special debugging mode that makes it easier to troubleshoot the application. This mode can be turned on in the <code>WEB-INF/web.xml</code> file, by setting a new <code><init-param>debug</init-param></code> node to <code>true</code>. | ||
Line 23: | Line 26: | ||
<note>The debugging mode should not be turned on by default on a production server and should only be used to diagnose a problem when CKFinder does not work as expected.</note> | <note>The debugging mode should not be turned on by default on a production server and should only be used to diagnose a problem when CKFinder does not work as expected.</note> | ||
+ | |||
+ | |||
+ | == Empty Message Errors == |
Revision as of 07:39, 2 August 2011
This article describes some measures that can be taken in case of problems with the CKFinder for Java application.
Debugging CKFinder
CKFinder for Java contains a special debugging mode that makes it easier to troubleshoot the application. This mode can be turned on in the WEB-INF/web.xml
file, by setting a new <init-param>debug</init-param>
node to true
.
<servlet> <servlet-name>ConnectorServlet</servlet-name> <servlet-class>com.ckfinder.connector.ConnectorServlet</servlet-class> <init-param> <param-name>XMLConfig</param-name> <param-value>/WEB-INF/config.xml</param-value> </init-param> <init-param> <param-name>debug</param-name> <param-value>true</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet>
For more information on the web.xml
file refer to the Integration article.
With the debugging mode on, CKFinder returns detailed exception information when an error occurs.