Configuration"

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.

(Only URI encoding is implemented in CKFinder for Java)
 
(8 intermediate revisions by one other user not shown)
Line 3: Line 3:
  
 
* [[/Quick Start|Quick Start]]
 
* [[/Quick Start|Quick Start]]
* [[/Sessions|Sessions]]
+
** [[/baseURL and baseDir|baseURL and baseDir Explained]]
 
* [[/Access Control|Access Control]]
 
* [[/Access Control|Access Control]]
 
* [[/Images|Images]]  
 
* [[/Images|Images]]  
 
* [[/Resource Types|Resource Types]]  
 
* [[/Resource Types|Resource Types]]  
** [[/Resource Types/Built-in|Built-in resource types]]
+
** [[/Resource Types/Built-in|Built-in Resource Types]]
** [[/Resource Types/New|Adding new resource types]]
+
** [[/Resource Types/New|Adding New Resource Types]]
 
* [[/Security|Security]]  
 
* [[/Security|Security]]  
** [[/Security/Double file extensions|Double file extensions]]
+
** [[/Security/Double file extensions|Double File Extensions]]
 
** [[/Security/Image uploads|Image Uploads]]
 
** [[/Security/Image uploads|Image Uploads]]
** [[/Security/Html extensions|HTML extensions]]
+
** [[/Security/Html extensions|HTML Extensions]]
 +
** [[/Security/Securing a Publicly Accessible Folder|Securing a Publicly Accessible Folder]]
 
* [[/URI Encoding|URI Encoding]]
 
* [[/URI Encoding|URI Encoding]]
 +
* [[/Hiding Folders and Files|Hiding Specific Folders and Files]]
 +
* [[/Extending|Extending Configuration]]
  
 
{{CKFinder_2.x JavaScript Configuration|language=Java}}
 
{{CKFinder_2.x JavaScript Configuration|language=Java}}

Latest revision as of 12:59, 21 August 2019

Server Side Configuration

CKFinder configuration in Java is based on editing the config.xml file. To learn more refer to the following sections:

JavaScript Configuration

CKFinder configuration in JavaScript is based on editing the config.js file. Unlike the Java configuration, it is more focused on the interface.
Below you will find some most commonly used configuration settings:

For the list of all available configuration options refer to the CKFinder API documentation.

Example

Below you can find a sample config.js file.

CKFinder.customConfig = function( config )
{
	config.skin = 'v1';
	config.language = 'fr';
};
This page was last edited on 21 August 2019, at 12:59.