Line 1: | Line 1: | ||
CKFinder configuration in ColdFusion is based on editing the '''config.cfm''' file. To learn more go throughout the following sections: | CKFinder configuration in ColdFusion is based on editing the '''config.cfm''' file. To learn more go throughout the following sections: | ||
+ | == Server Side Configuration == | ||
* [[/Quick Start|Quick Start]] | * [[/Quick Start|Quick Start]] | ||
* [[/Sessions|Sessions]] | * [[/Sessions|Sessions]] |
Revision as of 12:28, 18 May 2010
CKFinder configuration in ColdFusion is based on editing the config.cfm file. To learn more go throughout the following sections:
Server Side Configuration
JavaScript Configuration
CKFinder configuration in JavaScript is based on editing the config.js
file.
Unlike the PHP 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'; };