config.php
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <?php 
  2. /*
  3.  * FCKeditor - The text editor for internet
  4.  * Copyright (C) 2003-2005 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 PHP File Uploader.
  14.  * 
  15.  * File Authors:
  16.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  17.  */
  18. global $Config ;
  19. // SECURITY: You must explicitelly enable this "uploader". 
  20. $Config['Enabled'] = false ;
  21. // Path to uploaded files relative to the document root.
  22. $Config['UserFilesPath'] = '/UserFiles/' ;
  23. $Config['AllowedExtensions']['File'] = array() ;
  24. $Config['DeniedExtensions']['File'] = array('php','php3','php5','phtml','asp','aspx','ascx','jsp','cfm','cfc','pl','bat','exe','dll','reg','cgi') ;
  25. $Config['AllowedExtensions']['Image'] = array('jpg','gif','jpeg','png') ;
  26. $Config['DeniedExtensions']['Image'] = array() ;
  27. $Config['AllowedExtensions']['Flash'] = array('swf','fla') ;
  28. $Config['DeniedExtensions']['Flash'] = array() ;
  29. ?>