[ Index ] |
PHP Cross Reference of vtigercrm-6.1.0 |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** This file is part of KCFinder project 4 * 5 * @desc Base configuration file 6 * @package KCFinder 7 * @version 2.21 8 * @author Pavel Tzonkov <[email protected]> 9 * @copyright 2010 KCFinder Project 10 * @license http://www.opensource.org/licenses/gpl-2.0.php GPLv2 11 * @license http://www.opensource.org/licenses/lgpl-2.1.php LGPLv2 12 * @link http://kcfinder.sunhater.com 13 */ 14 15 // IMPORTANT!!! Do not remove uncommented settings in this file even if 16 // you are using session configuration. 17 // See http://kcfinder.sunhater.com/install for setting descriptions 18 19 $_CONFIG = array( 20 21 'disabled' => true, 22 'readonly' => false, 23 'denyZipDownload' => true, 24 25 'theme' => "oxygen", 26 27 'uploadURL' => "upload", 28 'uploadDir' => "", 29 30 'dirPerms' => 0755, 31 'filePerms' => 0644, 32 33 'deniedExts' => "exe com msi bat php phps phtml php3 php4 cgi pl", // UPDATED: http://kcfinder.sunhater.com/docs/install 34 35 'types' => array( 36 37 // CKEditor & FCKEditor types 38 'files' => "", 39 'flash' => "swf", 40 'images' => "*img", 41 42 // TinyMCE types 43 'file' => "", 44 'media' => "swf flv avi mpg mpeg qt mov wmv asf rm", 45 'image' => "*img", 46 ), 47 48 'mime_magic' => "", 49 50 'maxImageWidth' => 0, 51 'maxImageHeight' => 0, 52 53 'thumbWidth' => 100, 54 'thumbHeight' => 100, 55 56 'thumbsDir' => ".thumbs", 57 58 'jpegQuality' => 90, 59 60 'cookieDomain' => "", 61 'cookiePath' => "", 62 'cookiePrefix' => 'KCFINDER_', 63 64 // THE FOLLOWING SETTINGS CANNOT BE OVERRIDED WITH SESSION CONFIGURATION 65 66 '_check4htaccess' => true, 67 //'_tinyMCEPath' => "/tiny_mce", 68 69 '_sessionVar' => &$_SESSION['KCFINDER'], 70 //'_sessionLifetime' => 30, 71 //'_sessionDir' => "/full/directory/path", 72 73 //'_sessionDomain' => ".mysite.com", 74 //'_sessionPath' => "/my/path", 75 ); 76 77 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:08:37 2014 | Cross-referenced by PHPXref 0.7.1 |