<% ' FCKeditor - The text editor for Internet - http://www.fckeditor.net ' Copyright (C) 2003-2007 Frederico Caldeira Knabben ' ' == BEGIN LICENSE == ' ' Licensed under the terms of any of the following licenses at your ' choice: ' ' - GNU General Public License Version 2 or later (the "GPL") ' http://www.gnu.org/licenses/gpl.html ' ' - GNU Lesser General Public License Version 2.1 or later (the "LGPL") ' http://www.gnu.org/licenses/lgpl.html ' ' - Mozilla Public License Version 1.1 or later (the "MPL") ' http://www.mozilla.org/MPL/MPL-1.1.html ' ' == END LICENSE == ' ' Configuration file for the File Manager Connector for ASP. %> <% ' SECURITY: You must explicitelly enable this "connector" (set it to "True"). ' WARNING: don't just set "ConfigIsEnabled = true", you must be sure that only ' authenticated users can access this file or use some kind of session checking. Dim ConfigIsEnabled ConfigIsEnabled = False ' Path to user files relative to the document root. ' This setting is preserved only for backward compatibility. ' You should look at the settings for each resource type to get the full potential Dim ConfigUserFilesPath ConfigUserFilesPath = "/userfiles/" ' Due to security issues with Apache modules, it is reccomended to leave the ' following setting enabled. Dim ConfigForceSingleExtension ConfigForceSingleExtension = true ' What the user can do with this connector Dim ConfigAllowedCommands ConfigAllowedCommands = "QuickUpload|FileUpload|GetFolders|GetFoldersAndFiles|CreateFolder" ' Allowed Resource Types Dim ConfigAllowedTypes ConfigAllowedTypes = "File|Image|Flash|Media" ' ' Configuration settings for each Resource Type ' ' - AllowedExtensions: the possible extensions that can be allowed. ' If it is empty then any file type can be uploaded. ' ' - DeniedExtensions: The extensions that won't be allowed. ' If it is empty then no restrictions are done here. ' ' For a file to be uploaded it has to fullfil both the AllowedExtensions ' and DeniedExtensions (that's it: not being denied) conditions. ' ' - FileTypesPath: the virtual folder relative to the document root where ' these resources will be located. ' Attention: It must start and end with a slash: '/' ' ' - FileTypesAbsolutePath: the physical path to the above folder. It must be ' an absolute path. ' If it's an empty string then it will be autocalculated. ' Usefull if you are using a virtual directory, symbolic link or alias. ' Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'. ' Attention: The above 'FileTypesPath' must point to the same directory. ' Attention: It must end with a slash: '/' ' ' - QuickUploadPath: the virtual folder relative to the document root where ' these resources will be uploaded using the Upload tab in the resources ' dialogs. ' Attention: It must start and end with a slash: '/' ' ' - QuickUploadAbsolutePath: the physical path to the above folder. It must be ' an absolute path. ' If it's an empty string then it will be autocalculated. ' Usefull if you are using a virtual directory, symbolic link or alias. ' Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'. ' Attention: The above 'QuickUploadPath' must point to the same directory. ' Attention: It must end with a slash: '/' ' Dim ConfigAllowedExtensions, ConfigDeniedExtensions, ConfigFileTypesPath, ConfigFileTypesAbsolutePath, ConfigQuickUploadPath, ConfigQuickUploadAbsolutePath Set ConfigAllowedExtensions = CreateObject( "Scripting.Dictionary" ) Set ConfigDeniedExtensions = CreateObject( "Scripting.Dictionary" ) Set ConfigFileTypesPath = CreateObject( "Scripting.Dictionary" ) Set ConfigFileTypesAbsolutePath = CreateObject( "Scripting.Dictionary" ) Set ConfigQuickUploadPath = CreateObject( "Scripting.Dictionary" ) Set ConfigQuickUploadAbsolutePath = CreateObject( "Scripting.Dictionary" ) ConfigAllowedExtensions.Add "File", "" ConfigDeniedExtensions.Add "File", "html|htm|php|php2|php3|php4|php5|phtml|pwml|inc|asp|aspx|ascx|jsp|cfm|cfc|pl|bat|exe|com|dll|vbs|js|reg|cgi|htaccess|asis|sh|shtml|shtm|phtm" ConfigFileTypesPath.Add "File", "http://127.0.0.1/userfiles/file/" ConfigFileTypesAbsolutePath.Add "File", "d:\inetpub\wwwroot\docs\file\" ConfigQuickUploadPath.Add "File", ConfigUserFilesPath ConfigQuickUploadAbsolutePath.Add "File", "" ConfigAllowedExtensions.Add "Image", "jpg|gif|jpeg|png|bmp" ConfigDeniedExtensions.Add "Image", "" ConfigFileTypesPath.Add "Image", "http://127.0.0.1/userfiles/image/" ConfigFileTypesAbsolutePath.Add "Image", "d:\inetpub\wwwroot\docs\image\" ConfigQuickUploadPath.Add "Image", ConfigUserFilesPath ConfigQuickUploadAbsolutePath.Add "Image", "" ConfigAllowedExtensions.Add "Flash", "swf|fla" ConfigDeniedExtensions.Add "Flash", "" ConfigFileTypesPath.Add "Flash", ConfigUserFilesPath & "flash/" ConfigFileTypesAbsolutePath.Add "Flash", "" ConfigQuickUploadPath.Add "Flash", ConfigUserFilesPath ConfigQuickUploadAbsolutePath.Add "Flash", "" ConfigAllowedExtensions.Add "Media", "swf|fla|jpg|gif|jpeg|png|avi|mpg|mpeg|mp(1-4)|wma|wmv|wav|mid|midi|rmi|rm|ram|rmvb|mov|qt" ConfigDeniedExtensions.Add "Media", "" ConfigFileTypesPath.Add "Media", ConfigUserFilesPath & "media/" ConfigFileTypesAbsolutePath.Add "Media", "" ConfigQuickUploadPath.Add "Media", ConfigUserFilesPath ConfigQuickUploadAbsolutePath.Add "Media", "" %>