Troubleshooting"

This website contains links to software which is either no longer maintained or will be supported only until the end of 2019 (CKFinder 2). For the latest documentation about current CKSource projects, including software like CKEditor 4/CKEditor 5, CKFinder 3, Cloud Services, Letters, Accessibility Checker, please visit the new documentation website.

If you look for an information about very old versions of CKEditor, FCKeditor and CKFinder check also the CKEditor forum, which was closed in 2015. If not, please head to StackOverflow for support.

(Explain the "Enable Parent Paths" problem in IIS6)
 
Line 4: Line 4:
  
 
# Using the Administrative tools you can change the setting as explained in [http://support.microsoft.com/?scid=kb%3Ben-us%3B332117 MS KB Q332117]
 
# Using the Administrative tools you can change the setting as explained in [http://support.microsoft.com/?scid=kb%3Ben-us%3B332117 MS KB Q332117]
# If you don't have access or don't want to change that, then open the ckfinder/core/connector/asp/connector.asp file, go to line 51 and change<br>
+
# If you don't have access or don't want to change that, then open the ckfinder/core/connector/asp/connector.asp file, go to line 51 (it might change in newer versions) and change<br>
 
<pre>&lt;! -- #INCLUDE file="../../../config.asp" --&gt;
 
<pre>&lt;! -- #INCLUDE file="../../../config.asp" --&gt;
 
</pre>  
 
</pre>  
Line 10: Line 10:
 
<pre>&lt;! -- #INCLUDE VIRTUAL="/ckfinder/config.asp" --&gt;</pre>  
 
<pre>&lt;! -- #INCLUDE VIRTUAL="/ckfinder/config.asp" --&gt;</pre>  
 
Please, note that if you have placed ckfinder under a different root folder you'll need to adjust the path in that line
 
Please, note that if you have placed ckfinder under a different root folder you'll need to adjust the path in that line
 +
 +
Also, there's a space in the previous lines due to a security restriction in this server, the lines should start with &lt;!-- with no extra space between ! and -

Revision as of 14:07, 22 March 2008

In some IIS 6 instalations you might receive an error 'ASP 0131'.
That's due to a security setting in IIS that doesn't allow to use a relative paths in include files.

There are two solutions for this problem.

  1. Using the Administrative tools you can change the setting as explained in MS KB Q332117
  2. If you don't have access or don't want to change that, then open the ckfinder/core/connector/asp/connector.asp file, go to line 51 (it might change in newer versions) and change
<! -- #INCLUDE file="../../../config.asp" -->

with

<! -- #INCLUDE VIRTUAL="/ckfinder/config.asp" -->

Please, note that if you have placed ckfinder under a different root folder you'll need to adjust the path in that line

Also, there's a space in the previous lines due to a security restriction in this server, the lines should start with <!-- with no extra space between ! and -