New

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.

To create a new resource type you should append the following lines of code anywhere after the "ResourceType type;" line in the configuration file.

For example, if want to create a resource type named MSdocs which will only accept files with the "doc", "ppt" and "xls" extensions, restricting the file size to 2 megabytes:

type = ResourceType.Add( "MSdocs" );
type.Url = BaseUrl + "docs/";
type.Dir = BaseDir == "" ? "" : BaseDir + "docs/";
type.MaxSize = 2097152; // 2MB in Bytes
type.AllowedExtensions = new string[] { "doc", "ppt", "xls" };
type.DeniedExtensions = new string[] { };

The above options are described in the Built-in resource types section.

By default, CKFinder will use all the resources types including the new one you have just created. If you want to limit the CKFinder to use only your resource type you must place its name in the in the DefaultResourceTypes setting. For example:

DefaultResourceTypes = "MSdocs";
This page was last edited on 28 May 2010, at 08:32.