config.lasso
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:2k
源码类别:

OA系统

开发平台:

C#

  1. [//lasso
  2. /*
  3.  * FCKeditor - The text editor for internet
  4.  * Copyright (C) 2003-2006 Frederico Caldeira Knabben
  5.  * 
  6.  * Licensed under the terms of the GNU Lesser General Public License:
  7.  *  http://www.opensource.org/licenses/lgpl-license.php
  8.  * 
  9.  * For further information visit:
  10.  *  http://www.fckeditor.net/
  11.  * 
  12.  * File Name: config.php
  13.  *  Configuration file for the Lasso File Uploader.
  14.  * 
  15.  * File Authors:
  16.  *  Jason Huck (jason.huck@corefive.com)
  17.  */
  18.     /*.....................................................................     
  19.     The connector uses the file tags, which require authentication. Enter a
  20.     valid username and password from Lasso admin for a group with file tags
  21.     permissions for uploads and the path you define in UserFilesPath below.                                                                        
  22.     */ 
  23.     
  24. var('connection') = array(
  25. -username='xxxxxxxx',
  26. -password='xxxxxxxx'
  27. );
  28.     /*.....................................................................     
  29.     Set the base path for files that users can upload and browse (relative
  30.     to server root).
  31.     
  32.     Set which file extensions are allowed and/or denied for each file type.                                                                           
  33.     */                                                                          
  34. var('config') = map(
  35. 'Enabled' = false,
  36. 'UserFilesPath' = '/UserFiles/',
  37. 'Subdirectories' = map(
  38. 'File' = 'File/',
  39. 'Image' = 'Image/',
  40. 'Flash' = 'Flash/',
  41. 'Media' = 'Media/'
  42. ),
  43. 'AllowedExtensions' = map(
  44. 'File' = array(),
  45. 'Image' = array('jpg','gif','jpeg','png'),
  46. 'Flash' = array('swf','fla'),
  47. 'Media' = array('swf','fla','jpg','gif','jpeg','png','avi','mpg','mpeg')
  48. ),
  49. 'DeniedExtensions' = map(
  50. 'File' = array('php','php2','php3','php4','php5','phtml','pwml','inc','asp','aspx','ascx','jsp','cfm','cfc','pl','bat','exe','com','dll','vbs','js','reg','cgi','lasso','lassoapp'),
  51. 'Image' = array(),
  52. 'Flash' = array(),
  53. 'Media' = array()
  54. )
  55. );
  56. ]