(Created page with '{{Ckfinder html extension Description_2.x|code=<pre>CKFinder_Config.Add "HtmlExtensions", "html,htm,xml,js"</pre>|code2=<pre>CKFinder_Config.Add "HtmlExtensions", "html,htm,xml,j…') |
(<pre> changed to <source> with ASP syntax coloring) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{Ckfinder_2.x html extension Description|code=<source lang="asp">CKFinder_Config.Add "HtmlExtensions", "html,htm,xml,js"</source>|code2=<source lang="asp">CKFinder_Config.Add "HtmlExtensions", "html,htm,xml,js,xsl"</source>}} |
Latest revision as of 13:33, 29 March 2011
Sometimes when you are uploading a file it may contain HTML code in the first kilobytes of its data. CKFinder will upload the file with the HTML code only when the file extension is added to the following configuration setting:
CKFinder_Config.Add "HtmlExtensions", "html,htm,xml,js"
If you, for example, want to upload an .xsl
file that contains HTML code at the beginning of the file, you should add this file extension to the list.
CKFinder_Config.Add "HtmlExtensions", "html,htm,xml,js,xsl"
Please note that this feature performs only a very basic set of checks to detect HTML-like data in the first 1kB of the file contents to protect users e.g. against unintentional uploading of files with HTML content and with a wrong extension.