P.Wiaderny (talk | contribs) |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | == Server Side Configuration == | ||
+ | |||
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: | ||
− | |||
* [[/Quick Start|Quick Start]] | * [[/Quick Start|Quick Start]] | ||
* [[/Sessions|Sessions]] | * [[/Sessions|Sessions]] | ||
Line 7: | Line 8: | ||
* [[/Images|Images]] | * [[/Images|Images]] | ||
* [[/Resource Types|Resource Types]] | * [[/Resource Types|Resource Types]] | ||
− | ** [[/Resource Types/Built-in|Built-in | + | ** [[/Resource Types/Built-in|Built-in Resource Types]] |
− | ** [[/Resource Types/New|Adding | + | ** [[/Resource Types/New|Adding New Resource Types]] |
* [[/Security|Security]] | * [[/Security|Security]] | ||
− | ** [[/Security/Double file extensions|Double | + | ** [[/Security/Double file extensions|Double File Extensions]] |
** [[/Security/Image uploads|Image Uploads]] | ** [[/Security/Image uploads|Image Uploads]] | ||
− | ** [[/Security/Html extensions| | + | ** [[/Security/Html extensions|HTML Extensions]] |
+ | ** [[/Security/Securing a Publicly Accessible Folder|Securing a Publicly Accessible Folder]] | ||
{{CKFinder_2.x JavaScript Configuration|language=PHP}} | {{CKFinder_2.x JavaScript Configuration|language=PHP}} |
Latest revision as of 11:56, 21 August 2019
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 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'; };