Lines Matching refs:Config

26 	Config = StructNew() ;
29 Config.Enabled = true ;
32 Config.UserFilesPath = "/userfiles/" ;
38 Config.ServerPath = "" ;
42 Config.ForceSingleExtension = true ;
46 Config.SecureImageUploads = true;
49Config.ConfigAllowedCommands = "QuickUpload,FileUpload,GetFolders,GetFoldersAndFiles,CreateFold…
52 Config.ConfigAllowedTypes = "File,Image,Flash,Media" ;
57 Config.HtmlExtensions = "html,htm,xml,xsd,txt,js" ;
96 Config.AllowedExtensions = StructNew() ;
97 Config.DeniedExtensions = StructNew() ;
98 Config.FileTypesPath = StructNew() ;
99 Config.FileTypesAbsolutePath = StructNew() ;
100 Config.QuickUploadPath = StructNew() ;
101 Config.QuickUploadAbsolutePath = StructNew() ;
103Config.AllowedExtensions["File"] = "7z,aiff,asf,avi,bmp,csv,doc,fla,flv,gif,gz,gzip,jpeg,jpg,mid…
104 Config.DeniedExtensions["File"] = "" ;
105 Config.FileTypesPath["File"] = Config.UserFilesPath & 'file/' ;
106Config.FileTypesAbsolutePath["File"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPath…
107 Config.QuickUploadPath["File"] = Config.FileTypesPath["File"] ;
108 Config.QuickUploadAbsolutePath["File"] = Config.FileTypesAbsolutePath["File"] ;
110 Config.AllowedExtensions["Image"] = "bmp,gif,jpeg,jpg,png,psd,tif,tiff" ;
111 Config.DeniedExtensions["Image"] = "" ;
112 Config.FileTypesPath["Image"] = Config.UserFilesPath & 'image/' ;
113Config.FileTypesAbsolutePath["Image"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPat…
114 Config.QuickUploadPath["Image"] = Config.FileTypesPath["Image"] ;
115 Config.QuickUploadAbsolutePath["Image"] = Config.FileTypesAbsolutePath["Image"] ;
117 Config.AllowedExtensions["Flash"] = "swf,fla" ;
118 Config.DeniedExtensions["Flash"] = "" ;
119 Config.FileTypesPath["Flash"] = Config.UserFilesPath & 'flash/' ;
120Config.FileTypesAbsolutePath["Flash"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPat…
121 Config.QuickUploadPath["Flash"] = Config.FileTypesPath["Flash"] ;
122 Config.QuickUploadAbsolutePath["Flash"] = Config.FileTypesAbsolutePath["Flash"] ;
124Config.AllowedExtensions["Media"] = "aiff,asf,avi,bmp,fla,flv,gif,jpeg,jpg,mid,mov,mp3,mp4,mpc,m…
125 Config.DeniedExtensions["Media"] = "" ;
126 Config.FileTypesPath["Media"] = Config.UserFilesPath & 'media/' ;
127Config.FileTypesAbsolutePath["Media"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPat…
128 Config.QuickUploadPath["Media"] = Config.FileTypesPath["Media"] ;
129 Config.QuickUploadAbsolutePath["Media"] = Config.FileTypesAbsolutePath["Media"] ;