config.asp
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:6k
源码类别:

数据库编程

开发平台:

Visual C++

  1. <%
  2.  ' FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  ' Copyright (C) 2003-2007 Frederico Caldeira Knabben
  4.  '
  5.  ' == BEGIN LICENSE ==
  6.  '
  7.  ' Licensed under the terms of any of the following licenses at your
  8.  ' choice:
  9.  '
  10.  '  - GNU General Public License Version 2 or later (the "GPL")
  11.  '    http://www.gnu.org/licenses/gpl.html
  12.  '
  13.  '  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14.  '    http://www.gnu.org/licenses/lgpl.html
  15.  '
  16.  '  - Mozilla Public License Version 1.1 or later (the "MPL")
  17.  '    http://www.mozilla.org/MPL/MPL-1.1.html
  18.  '
  19.  ' == END LICENSE ==
  20.  '
  21.  ' Configuration file for the File Manager Connector for ASP.
  22. %>
  23. <%
  24. ' SECURITY: You must explicitelly enable this "connector" (set it to "True").
  25. ' WARNING: don't just set "ConfigIsEnabled = true", you must be sure that only 
  26. ' authenticated users can access this file or use some kind of session checking.
  27. Dim ConfigIsEnabled
  28. ConfigIsEnabled = False
  29. ' Path to user files relative to the document root.
  30. ' This setting is preserved only for backward compatibility. 
  31. ' You should look at the settings for each resource type to get the full potential
  32. Dim ConfigUserFilesPath
  33. ConfigUserFilesPath = "/userfiles/"
  34. ' Due to security issues with Apache modules, it is reccomended to leave the
  35. ' following setting enabled.
  36. Dim ConfigForceSingleExtension
  37. ConfigForceSingleExtension = true 
  38. ' What the user can do with this connector
  39. Dim ConfigAllowedCommands
  40. ConfigAllowedCommands = "QuickUpload|FileUpload|GetFolders|GetFoldersAndFiles|CreateFolder"
  41. ' Allowed Resource Types
  42. Dim ConfigAllowedTypes
  43. ConfigAllowedTypes = "File|Image|Flash|Media"
  44. ' For security, HTML is allowed in the first Kb of data for files having the
  45. ' following extensions only.
  46. Dim ConfigHtmlExtensions
  47. ConfigHtmlExtensions = "html|htm|xml|xsd|txt|js"
  48. '
  49. ' Configuration settings for each Resource Type
  50. '
  51. ' - AllowedExtensions: the possible extensions that can be allowed. 
  52. ' If it is empty then any file type can be uploaded.
  53. '
  54. ' - DeniedExtensions: The extensions that won't be allowed. 
  55. ' If it is empty then no restrictions are done here.
  56. '
  57. ' For a file to be uploaded it has to fullfil both the AllowedExtensions
  58. ' and DeniedExtensions (that's it: not being denied) conditions.
  59. '
  60. ' - FileTypesPath: the virtual folder relative to the document root where
  61. ' these resources will be located. 
  62. ' Attention: It must start and end with a slash: '/'
  63. '
  64. ' - FileTypesAbsolutePath: the physical path to the above folder. It must be
  65. ' an absolute path. 
  66. ' If it's an empty string then it will be autocalculated.
  67. ' Usefull if you are using a virtual directory, symbolic link or alias. 
  68. ' Examples: 'C:\MySite\userfiles\' or '/root/mysite/userfiles/'.
  69. ' Attention: The above 'FileTypesPath' must point to the same directory.
  70. ' Attention: It must end with a slash: '/'
  71. '
  72. ' - QuickUploadPath: the virtual folder relative to the document root where
  73. ' these resources will be uploaded using the Upload tab in the resources 
  74. ' dialogs.
  75. ' Attention: It must start and end with a slash: '/'
  76. '
  77. '  - QuickUploadAbsolutePath: the physical path to the above folder. It must be
  78. ' an absolute path. 
  79. ' If it's an empty string then it will be autocalculated.
  80. ' Usefull if you are using a virtual directory, symbolic link or alias. 
  81. ' Examples: 'C:\MySite\userfiles\' or '/root/mysite/userfiles/'.
  82. ' Attention: The above 'QuickUploadPath' must point to the same directory.
  83. ' Attention: It must end with a slash: '/'
  84. '
  85. Dim ConfigAllowedExtensions, ConfigDeniedExtensions, ConfigFileTypesPath, ConfigFileTypesAbsolutePath, ConfigQuickUploadPath, ConfigQuickUploadAbsolutePath
  86. Set ConfigAllowedExtensions = CreateObject( "Scripting.Dictionary" )
  87. Set ConfigDeniedExtensions = CreateObject( "Scripting.Dictionary" )
  88. Set ConfigFileTypesPath = CreateObject( "Scripting.Dictionary" )
  89. Set ConfigFileTypesAbsolutePath = CreateObject( "Scripting.Dictionary" )
  90. Set ConfigQuickUploadPath = CreateObject( "Scripting.Dictionary" )
  91. Set ConfigQuickUploadAbsolutePath = CreateObject( "Scripting.Dictionary" )
  92. ConfigAllowedExtensions.Add "File", "7z|aiff|asf|avi|bmp|csv|doc|fla|flv|gif|gz|gzip|jpeg|jpg|mid|mov|mp3|mp4|mpc|mpeg|mpg|ods|odt|pdf|png|ppt|pxd|qt|ram|rar|rm|rmi|rmvb|rtf|sdc|sitd|swf|sxc|sxw|tar|tgz|tif|tiff|txt|vsd|wav|wma|wmv|xls|xml|zip"
  93. ConfigDeniedExtensions.Add "File", ""
  94. ConfigFileTypesPath.Add "File", ConfigUserFilesPath & "file/"
  95. ConfigFileTypesAbsolutePath.Add "File", ""
  96. ConfigQuickUploadPath.Add "File", ConfigUserFilesPath
  97. ConfigQuickUploadAbsolutePath.Add "File", ""
  98. ConfigAllowedExtensions.Add "Image", "bmp|gif|jpeg|jpg|png|psd|tif|tiff"
  99. ConfigDeniedExtensions.Add "Image", ""
  100. ConfigFileTypesPath.Add "Image", ConfigUserFilesPath & "image/"
  101. ConfigFileTypesAbsolutePath.Add "Image", ""
  102. ConfigQuickUploadPath.Add "Image", ConfigUserFilesPath
  103. ConfigQuickUploadAbsolutePath.Add "Image", ""
  104. ConfigAllowedExtensions.Add "Flash", "swf|fla"
  105. ConfigDeniedExtensions.Add "Flash", ""
  106. ConfigFileTypesPath.Add "Flash", ConfigUserFilesPath & "flash/"
  107. ConfigFileTypesAbsolutePath.Add "Flash", ""
  108. ConfigQuickUploadPath.Add "Flash", ConfigUserFilesPath
  109. ConfigQuickUploadAbsolutePath.Add "Flash", ""
  110. ConfigAllowedExtensions.Add "Media", "aiff|asf|avi|bmp|fla|flv|gif|jpeg|jpg|mid|mov|mp3|mp4|mpc|mpeg|mpg|png|qt|ram|rm|rmi|rmvb|swf|tif|tiff|wav|wma|wmv"
  111. ConfigDeniedExtensions.Add "Media", ""
  112. ConfigFileTypesPath.Add "Media", ConfigUserFilesPath & "media/"
  113. ConfigFileTypesAbsolutePath.Add "Media", ""
  114. ConfigQuickUploadPath.Add "Media", ConfigUserFilesPath
  115. ConfigQuickUploadAbsolutePath.Add "Media", ""
  116. %>