DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> WEB網站前端 >> WEB前端代碼 >> 修改ckeditor/ckfinder上傳文件文件夾 路徑以日期格式命名
修改ckeditor/ckfinder上傳文件文件夾 路徑以日期格式命名
編輯:WEB前端代碼     

修改/ckfinder/config.ascx文件:

string dateDir = DateTime.Today.ToString("yyyyMM/");

ResourceType type;
type = ResourceType.Add( "Files" );
type.Url = BaseUrl + "files/" + dateDir;
type.Dir = BaseDir == "" ? "" : BaseDir + "files/" + dateDir;
type.MaxSize = 0;
type.AllowedExtensions = new string[] { "7z", "aiff", "asf", "avi", "bmp", "csv", "doc", "docx", "fla", "flv", "gif", "gz", "gzip", "jpeg", "jpg", "mid", "mov", "mp3", "mp4", "mpc", "mpeg", "mpg", "ods", "odt", "pdf", "png", "ppt", "pptx", "pxd", "qt", "ram", "rar", "rm", "rmi", "rmvb", "rtf", "sdc", "sitd", "swf", "sxc", "sxw", "tar", "tgz", "tif", "tiff", "txt", "vsd", "wav", "wma", "wmv", "xls", "xlsx", "zip" };
type.DeniedExtensions = new string[] { };

type = ResourceType.Add( "Images" );
type.Url = BaseUrl + "images/" + dateDir;
type.Dir = BaseDir == "" ? "" : BaseDir + "images/" + dateDir;
type.MaxSize = 0;
type.AllowedExtensions = new string[] { "bmp", "gif", "jpeg", "jpg", "png" };
type.DeniedExtensions = new string[] { };

type = ResourceType.Add( "Flash" );
type.Url = BaseUrl + "flash/" + dateDir;
type.Dir = BaseDir == "" ? "" : BaseDir + "flash/" + dateDir;
type.MaxSize = 0;
type.AllowedExtensions = new string[] { "swf", "flv" };
type.DeniedExtensions = new string[] { };

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved