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

数据库编程

开发平台:

Visual C++

  1. <?php
  2. /*
  3.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  4.  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
  5.  *
  6.  * == BEGIN LICENSE ==
  7.  *
  8.  * Licensed under the terms of any of the following licenses at your
  9.  * choice:
  10.  *
  11.  *  - GNU General Public License Version 2 or later (the "GPL")
  12.  *    http://www.gnu.org/licenses/gpl.html
  13.  *
  14.  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  15.  *    http://www.gnu.org/licenses/lgpl.html
  16.  *
  17.  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  18.  *    http://www.mozilla.org/MPL/MPL-1.1.html
  19.  *
  20.  * == END LICENSE ==
  21.  *
  22.  * Configuration file for the File Manager Connector for PHP.
  23.  */
  24. global $Config ;
  25. // SECURITY: You must explicitelly enable this "connector". (Set it to "true").
  26. // WARNING: don't just set "ConfigIsEnabled = true", you must be sure that only 
  27. // authenticated users can access this file or use some kind of session checking.
  28. $Config['Enabled'] = false ;
  29. // Path to user files relative to the document root.
  30. $Config['UserFilesPath'] = '/userfiles/' ;
  31. // Fill the following value it you prefer to specify the absolute path for the
  32. // user files directory. Usefull if you are using a virtual directory, symbolic
  33. // link or alias. Examples: 'C:\MySite\userfiles\' or '/root/mysite/userfiles/'.
  34. // Attention: The above 'UserFilesPath' must point to the same directory.
  35. $Config['UserFilesAbsolutePath'] = '' ;
  36. // Due to security issues with Apache modules, it is reccomended to leave the
  37. // following setting enabled.
  38. $Config['ForceSingleExtension'] = true ;
  39. // Perform additional checks for image files
  40. // if set to true, validate image size (using getimagesize)
  41. $Config['SecureImageUploads'] = true;
  42. // What the user can do with this connector
  43. $Config['ConfigAllowedCommands'] = array('QuickUpload', 'FileUpload', 'GetFolders', 'GetFoldersAndFiles', 'CreateFolder') ;
  44. // Allowed Resource Types
  45. $Config['ConfigAllowedTypes'] = array('File', 'Image', 'Flash', 'Media') ;
  46. // For security, HTML is allowed in the first Kb of data for files having the
  47. // following extensions only.
  48. $Config['HtmlExtensions'] = array("html", "htm", "xml", "xsd", "txt", "js") ;
  49. /*
  50. Configuration settings for each Resource Type
  51. - AllowedExtensions: the possible extensions that can be allowed. 
  52. If it is empty then any file type can be uploaded.
  53. - DeniedExtensions: The extensions that won't be allowed. 
  54. If it is empty then no restrictions are done here.
  55. For a file to be uploaded it has to fullfil both the AllowedExtensions
  56. and DeniedExtensions (that's it: not being denied) conditions.
  57. - FileTypesPath: the virtual folder relative to the document root where
  58. these resources will be located. 
  59. Attention: It must start and end with a slash: '/'
  60. - FileTypesAbsolutePath: the physical path to the above folder. It must be
  61. an absolute path. 
  62. If it's an empty string then it will be autocalculated.
  63. Usefull if you are using a virtual directory, symbolic link or alias. 
  64. Examples: 'C:\MySite\userfiles\' or '/root/mysite/userfiles/'.
  65. Attention: The above 'FileTypesPath' must point to the same directory.
  66. Attention: It must end with a slash: '/'
  67.  - QuickUploadPath: the virtual folder relative to the document root where
  68. these resources will be uploaded using the Upload tab in the resources 
  69. dialogs.
  70. Attention: It must start and end with a slash: '/'
  71.  - QuickUploadAbsolutePath: the physical path to the above folder. It must be
  72. an absolute path. 
  73. If it's an empty string then it will be autocalculated.
  74. Usefull if you are using a virtual directory, symbolic link or alias. 
  75. Examples: 'C:\MySite\userfiles\' or '/root/mysite/userfiles/'.
  76. Attention: The above 'QuickUploadPath' must point to the same directory.
  77. Attention: It must end with a slash: '/'
  78.   NOTE: by default, QuickUploadPath and QuickUploadAbsolutePath point to 
  79.   "userfiles" directory to maintain backwards compatibility with older versions of FCKeditor. 
  80.   This is fine, but you in some cases you will be not able to browse uploaded files using file browser.
  81.   Example: if you clik on "image button", select "Upload" tab and send image 
  82.   to the server, image will appear in FCKeditor correctly, but because it is placed 
  83.   directly in /userfiles/ directory, you'll be not able to see it in built-in file browser.
  84.   The more expected behaviour would be to send images directly to "image" subfolder.
  85.   To achieve that, simply change
  86. $Config['QuickUploadPath']['Image'] = $Config['UserFilesPath'] ;
  87. $Config['QuickUploadAbsolutePath']['Image'] = $Config['UserFilesAbsolutePath'] ;
  88. into:
  89. $Config['QuickUploadPath']['Image'] = $Config['FileTypesPath']['Image'] ;
  90. $Config['QuickUploadAbsolutePath'['Image']  = $Config['FileTypesAbsolutePath']['Image'] ;
  91. */
  92. $Config['AllowedExtensions']['File'] = array('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. $Config['DeniedExtensions']['File'] = array() ;
  94. $Config['FileTypesPath']['File'] = $Config['UserFilesPath'] . 'file/' ;
  95. $Config['FileTypesAbsolutePath']['File']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath'].'file/' ;
  96. $Config['QuickUploadPath']['File'] = $Config['UserFilesPath'] ;
  97. $Config['QuickUploadAbsolutePath']['File']= $Config['UserFilesAbsolutePath'] ;
  98. $Config['AllowedExtensions']['Image'] = array('bmp','gif','jpeg','jpg','png','psd','tif','tiff') ;
  99. $Config['DeniedExtensions']['Image'] = array() ;
  100. $Config['FileTypesPath']['Image'] = $Config['UserFilesPath'] . 'image/' ;
  101. $Config['FileTypesAbsolutePath']['Image']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath'].'image/' ;
  102. $Config['QuickUploadPath']['Image'] = $Config['UserFilesPath'] ;
  103. $Config['QuickUploadAbsolutePath']['Image']= $Config['UserFilesAbsolutePath'] ;
  104. $Config['AllowedExtensions']['Flash'] = array('swf','fla') ;
  105. $Config['DeniedExtensions']['Flash'] = array() ;
  106. $Config['FileTypesPath']['Flash'] = $Config['UserFilesPath'] . 'flash/' ;
  107. $Config['FileTypesAbsolutePath']['Flash']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath'].'flash/' ;
  108. $Config['QuickUploadPath']['Flash'] = $Config['UserFilesPath'] ;
  109. $Config['QuickUploadAbsolutePath']['Flash']= $Config['UserFilesAbsolutePath'] ;
  110. $Config['AllowedExtensions']['Media'] = array('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. $Config['DeniedExtensions']['Media'] = array() ;
  112. $Config['FileTypesPath']['Media'] = $Config['UserFilesPath'] . 'media/' ;
  113. $Config['FileTypesAbsolutePath']['Media']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath'].'media/' ;
  114. $Config['QuickUploadPath']['Media'] = $Config['UserFilesPath'] ;
  115. $Config['QuickUploadAbsolutePath']['Media']= $Config['UserFilesAbsolutePath'] ;
  116. ?>