This article describes how to get working the Flash player 10 update on Kentico CMS 3.x
Could you please modify this file:
- if you have Kentico CMS 3.1 and 3.1a - \App_Code\CMSPages\GetFilePage.cs
- if you have v3.0 you can find it in \CMSPages\GetFile.aspx.cs
In the method "SetDisposition(string fileName, string extension)" change this IF statement:
if (ImageHelper.IsImage(extension) || ImageHelper.IsHtml(extension) || extension.ToLower() == ".pdf" )
to:
if (ImageHelper.IsImage(extension) || ImageHelper.IsHtml(extension) || extension.ToLower() == ".pdf" || extension.ToLower() == ".swf")
See also:
devnet.kentico.com/Forums.aspx
Applies to:
Kentico CMS 3.x
Created on 10/29/2008 4:27:47 AM