source: branches/2.2/news_admin/templates/default/fckeditor/editor/filemanager/upload/php/config.php @ 3347

Revision 3347, 1.8 KB checked in by eduardoalex, 13 years ago (diff)

Ticket #1219 - Correcao do erro narrado no ticket em questão

  • Property svn:executable set to *
Line 
1<?php
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 * "Support Open Source software. What about a donation today?"
13 *
14 * File Name: config.php
15 *      Configuration file for the PHP File Uploader.
16 *
17 * File Authors:
18 *              Frederico Caldeira Knabben (fredck@fckeditor.net)
19 */
20
21global $Config ;
22
23// SECURITY: You must explicitelly enable this "uploader".
24$Config['Enabled'] = true;
25
26// Set if the file type must be considere in the target path.
27// Ex: /UserFiles/Image/ or /UserFiles/File/
28$Config['UseFileType'] = false;
29
30// Path to uploaded files relative to the document root.
31$Config['UserFilesPath'] = '/public/' ;
32
33// Fill the following value it you prefer to specify the absolute path for the
34// user files directory. Usefull if you are using a virtual directory, symbolic
35// link or alias. Examples: 'C:\\MySite\\UserFiles\\' or '/root/mysite/UserFiles/'.
36// Attention: The above 'UserFilesPath' must point to the same directory.
37$Config['UserFilesAbsolutePath'] = '' ;
38
39// Due to security issues with Apache modules, it is reccomended to leave the
40// following setting enabled.
41$Config['ForceSingleExtension'] = true ;
42
43$Config['AllowedExtensions']['File']    = array() ;
44$Config['DeniedExtensions']['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') ;
45
46$Config['AllowedExtensions']['Image']   = array('jpg','gif','jpeg','png') ;
47$Config['DeniedExtensions']['Image']    = array() ;
48
49$Config['AllowedExtensions']['Flash']   = array('swf','fla') ;
50$Config['DeniedExtensions']['Flash']    = array() ;
51
52?>
Note: See TracBrowser for help on using the repository browser.