Subversion Repositories Applications.papyrus

Rev

Rev 487 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
431 ddelon 1
<?php
2
/*
3
 * FCKeditor - The text editor for internet
875 ddelon 4
 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
431 ddelon 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
 *
875 ddelon 12
 * "Support Open Source software. What about a donation today?"
13
 *
431 ddelon 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
 
21
global $Config ;
22
 
23
// SECURITY: You must explicitelly enable this "uploader".
432 ddelon 24
$Config['Enabled'] = true ;
431 ddelon 25
 
26
// Path to uploaded files relative to the document root.
875 ddelon 27
$Config['UserFilesPath'] = '/UserFiles/' ;
431 ddelon 28
 
875 ddelon 29
// Fill the following value it you prefer to specify the absolute path for the
30
// user files directory. Usefull if you are using a virtual directory, symbolic
31
// link or alias. Examples: 'C:\\MySite\\UserFiles\\' or '/root/mysite/UserFiles/'.
32
// Attention: The above 'UserFilesPath' must point to the same directory.
33
$Config['UserFilesAbsolutePath'] = '/home/david/workspace/papyrus/UserFiles/' ;
436 ddelon 34
 
875 ddelon 35
// Due to security issues with Apache modules, it is reccomended to leave the
36
// following setting enabled.
37
$Config['ForceSingleExtension'] = true ;
436 ddelon 38
 
431 ddelon 39
$Config['AllowedExtensions']['File']	= array() ;
875 ddelon 40
$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') ;
431 ddelon 41
 
42
$Config['AllowedExtensions']['Image']	= array('jpg','gif','jpeg','png') ;
43
$Config['DeniedExtensions']['Image']	= array() ;
44
 
45
$Config['AllowedExtensions']['Flash']	= array('swf','fla') ;
46
$Config['DeniedExtensions']['Flash']	= array() ;
47
 
48
?>