Configuration

Server Side Configuration

CKFinder configuration in ColdFusion is based on editing the config.cfm file. To learn more go throughout the following sections:

JavaScript Configuration

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

For the list of all available configuration options, check the CKFinder API documentation.

Example

A sample config.js:

CKFinder.customConfig = function( config )
{
	config.skin = 'v1';
	config.language = 'fr';
};
This page was last modified on 18 May 2010, at 11:29.