(Session section removed) |
(Extending Configuration section added) |
||
Line 6: | Line 6: | ||
* [[/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|HTML | + | ** [[/Security/Html extensions|HTML Extensions]] |
* [[/URI Encoding|URI Encoding]] | * [[/URI Encoding|URI Encoding]] | ||
+ | * [[/Extending|Extending Eonfiguration]] | ||
{{CKFinder_2.x JavaScript Configuration|language=Java}} | {{CKFinder_2.x JavaScript Configuration|language=Java}} |
Revision as of 08:14, 19 April 2011
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'; };