Line 10: | Line 10: | ||
** [[CKFinder_2.x/Developers Guide/ASP.NET/Configuration/Resource Types/Built-in|Built-in resource types]] | ** [[CKFinder_2.x/Developers Guide/ASP.NET/Configuration/Resource Types/Built-in|Built-in resource types]] | ||
** [[CKFinder_2.x/Developers Guide/ASP.NET/Configuration/Resource Types/New|Adding new resource types]] | ** [[CKFinder_2.x/Developers Guide/ASP.NET/Configuration/Resource Types/New|Adding new resource types]] | ||
+ | * [[/Security|Security]] | ||
+ | ** [[/Security/Double file extensions|Double file extensions]] | ||
+ | ** [[/Security/Image uploads|Image Uploads]] | ||
+ | ** [[/Security/Html extensions|Html extensions]] | ||
{{CKFinder_2.x JavaScript Configuration|language=ASP.NET}} | {{CKFinder_2.x JavaScript Configuration|language=ASP.NET}} |
Revision as of 12:41, 18 May 2010
Server Side Configuration
All configurations for CKFinder for ASP.NET can be found in the config.ascx 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 ASP.NET 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'; };