Documentation TYPO3 par Ameos

config_default.php

00001 <?php
00017 if (!defined ('PATH_typo3conf'))        die ('The configuration path was not properly defined!');
00018 
00019 $TYPO3_CONF_VARS = Array(
00020         'GFX' => array(         // Configuration of the image processing features in TYPO3. 'IM' and 'GD' are short for ImageMagick and  GD library respectively.
00021                 'image_processing' => 1,                                // Boolean. Enables image processing features. Disabling this means NO image processing with either GD or IM!
00022                 'thumbnails' => 1,                                              // Boolean. Enables the use of thumbnails in the backend interface. Thumbnails are generated by IM/partly GD in the file typo3/thumbs.php
00023                 'thumbnails_png' => 0,                                  // Bits. Bit0: If set, thumbnails from non-jpegs will be 'png', otherwise 'gif' (0=gif/1=png). Bit1: Even JPG's will be converted to png or gif (2=gif/3=png)
00024                 'noIconProc' => 1,                                              // Boolean. If true, icons are never processed with overlays for hidden, starttime, endtime etc. They must be available pre-processed. If this is disabled, do so only if you have full image processing capabilities on the server for TYPO3.
00025                 'gif_compress' => 1,                                    // Boolean. Enables the use of the t3lib_div::gif_compress() workaround function for compressing giffiles made with GD or IM, which probably use only RLE or no compression at all.
00026                 'imagefile_ext' => 'gif,jpg,jpeg,tif,bmp,pcx,tga,png,pdf,ai',   // Commalist of file extensions perceived as images by TYPO3. List should be set to 'gif,png,jpeg,jpg' if IM is not available. Lowercase and no spaces between!
00027 
00028                 'gdlib' => 1,                                                   // Boolean. Enables the use of GD.
00029                 'gdlib_png' => 0,                                               // Boolean. Enables the use of GD, with PNG only. This means that all items normally generated as gif-files will be png-files instead!
00030                 'gdlib_2' => 0,                                                 // String/Boolean. Set this if you are using the new GDlib 2.0.1+. If you don't set this flag and still uses GDlib2, you might encounter strange behaviours like black images etc. This feature might take effect only if ImageMagick is installed and working as well! You can also use the value "no_imagecopyresized_fix" - in that case it will NOT try to fix a known issue where "imagecopyresized" does not work correctly.
00031 
00032                 'im' => 1,                                                              // Boolean. Enables the use of IM.
00033                 'im_path' => '/usr/X11R6/bin/',                 // Path to the IM tools 'convert', 'combine', 'identify'. Version 4.2.9 of ImageMagick is highly recommended due to features and speed!
00034                 'im_path_lzw' => '/usr/bin/',                   // Path to the IM tool 'convert' with LZW enabled! See 'gif_compress'. If your version 4.2.9 of ImageMagick is compiled with LZW you may leave this field blank AND disable the flag 'gif_compress'! Tip: You can call LZW 'convert' with a prefix like 'myver_convert' by setting this path with it, eg. '/usr/bin/myver_' instead of just '/usr/bin/'.
00035 
00036                 'im_version_5' => 0,                                    // String/Boolean. Set this if you're using ImageMagick but not IM 4.x. Setting this value will automatically configure some settings for use with the specified ImageMagick version. Allowed values are: "0" (IM4) or "1" (IM5+). Set "gm" to activate the use of GraphicsMagick instead of ImageMagick.
00037                 'im_negate_mask' => 0,                                  // Boolean. Indicates if the mask images should be inverted first. This depends of the ImageMagick version. Below ver. 5.1 this should be false. Above ImageMagick version 5.2+ it should be true. Just set the flag if the masks works opposite the intension!
00038                 'im_imvMaskState' => 0,                                 // Boolean. If set, the 'im_negate_mask' state is inverted. This is very useful with newer versions of IM5 (at least 5.4.3+) where the 'im_version_5' setting will set 'im_negate_mask' which will eventually be wrong... Halleluja for ImageMagick - have I ever regreted using that package...
00039                 'im_no_effects' => 0,                                   // Boolean. This is necessary if using ImageMagick 5+. Approved version for using effects is version 4.2.9. Effects in Imagemagick 5+ tends to render very slowly! Therefore this must be disabled in order not to perform sharpen, blurring and such. (However lately IM5 is allowed for effects again, but syntax has changed!)
00040                 'im_v5effects' => 0,                                    // Integer -1,0,1. 0=disabled. -1=Do not sharpen images by default. 1=All; blur and sharpening is allowed in ImageMagick again and the 'im_no_effects' flag is cancelled. Blurring and sharpening has new syntaxes though. See class.t3lib_stdgraphic.php for details.
00041                 'im_mask_temp_ext_gif' => 0,                    // Boolean. This should be set if ImageMagick is version 5+. This is used in class.tslib_content.php for masking images and the extension png is normally used because it's faster than gif for temporary files. But png seems not to work with some IM 5+ versions, so...
00042                 'im_mask_temp_ext_noloss' => 'miff',    // String.      Loss-less ImageMagick extension to use for mask processing in temporary filenames. Normally 'miff' (ImageMagick's OWN format) will do fine. However at least IM 5.4.9 has proved not to be able to write to its own file format which forced me to add this option. You can try and set this to tif/png/jpg if some masking doesn't work the way it should.
00043                 'im_noScaleUp' => 0,                                    // Boolean. If set, images are not being scaled up if told so (in t3lib/stdgraphics.php)
00044                 'im_combine_filename' => 'combine',             // String. Latest ImageMagick versions has changed the name of combine to composite. Configure here if needed.
00045                 'im_noFramePrepended' => 0,                             // Boolean. If set, the [x] frame indicator is NOT prepended to filenames in stdgraphic. Some IM5+ version didn't work at all with the typical [0]-prefix, which allow multipage pdf's and animated gif's to be scaled only for the first frame/page and that seriously cuts down rendering time. Set this flag only if your ImageMagick version cannot find the files. Notice that changing this flag causes temporary filenames to change, thus the server will begin scaling images again which were previously cached.
00046                 'im_jpg_quality' => 70,                                 // Integer. Default JPEG generation quality
00047                 'enable_typo3temp_db_tracking' => 0,    // Boolean. If set, then all files in typo3temp will be logged in a database table. In addition to being a log of the files with original filenames, it also serves to secure that the same image is not rendered simultaneously by two different processes.
00048                 'TTFLocaleConv' => '',                                  // String. Enter locale conversion string used to recode input to TrueType functions. Eg. 'cp1250..UTF-8'. Works ONLY if 'recode' is enabled in PHP. Depreciated from ver. 3.6.0 of TYPO3. Set up [BE][forceCharset] as strings are automatically converted from databsae charset to UTF-8.
00049                 'TTFdpi' => '72',                                               // Integer. Enter how many dpi the FreeType module uses. Freetype1 should be set to 72. Freetype2 should be set to 96 (otherwise fonts are rendered way bigger than FreeType1). This works as a global scaling factor for Freetype.
00050         ),
00051         'SYS' => Array(                 // System related concerning both frontend and backend.
00052                 'sitename' => 'TYPO3',                                  // Name of the base-site. This title shows up in the root of the tree structure if you're an 'admin' backend user.
00053                 'encryptionKey' => '',                                  // This is a "salt" used for various kinds of encryption, CRC checksums and validations. You can enter any rubbish string here but try to keep it secret. You should notice that a change to this value might invalidate temporary information, URLs etc. At least, clear all cache if you change this so any such information can be rebuild with the new key.
00054                 'doNotCheckReferer' => 0,                               // Boolean. If set, it's NOT checked numerous places that the refering host is the same as the current. This is an option you should set if you have problems with proxies not passing the HTTP_REFERER variable.
00055                 'recursiveDomainSearch' => 0,                   // Boolean. If set, the search for domain records will be done recursively by stripping parts of the host name off until a matching domain record is found.
00056                 'devIPmask' => '192.168.*,127.0.0.1',   // Defines a list of IP addresses which will allow development-output to display. The debug() function will use this as a filter. See the function t3lib_div::cmpIP() for details on syntax. Setting this to blank value will deny all. Setting to '*' will allow all.
00057                 'enable_DLOG' => FALSE,                                 // Whether the developer log is enabled. See constant "TYPO3_DLOG"
00058                 'ddmmyy' => 'd-m-y',                                    // Format of Date-Month-Year - see php-function date()
00059                 'hhmm' => 'H:i',                                                // Format of Hours-minutes - see php-function date()
00060                 'loginCopyrightWarrantyProvider' => '',         // String: If you provide warranty for TYPO3 to your customers insert you (company) name here. It will appear in the login-dialog as the warranty provider. (You must also set URL below).
00061                 'loginCopyrightWarrantyURL' => '',              // String: Add the URL where you explain the extend of the warranty you provide. This URL is displayed in the login dialog as the place where people can learn more about the conditions of your warranty. Must be set (more than 10 chars) in addition with the 'loginCopyrightWarrantyProvider' message.
00062                 'loginCopyrightShowVersion' => 0,               // Boolean: If set, the current TYPO3 version is shown.
00063                 'curlUse' => 0,                                                 // Boolean: If set, try to use Curl to fetch external URLs (implemented by Arco <arco@appeltaart.mine.nu>)
00064                 'curlProxyServer' => '',                                // String: Proxyserver as http://proxy:port/.
00065                 'curlProxyTunnel' => 0,                                 // Boolean: If set, use a tunneled connection through the proxy (usefull for websense etc.).
00066                 'curlProxyUserPass' => '',                              // String: Proxyserver authentication user:pass.
00067                 'form_enctype' => 'multipart/form-data',        // String: This is the default form encoding type for most forms in TYPO3. It allows for file uploads to be in the form. However if file-upload is disabled for your PHP version even ordinary data sent with this encryption will not get to the server. So if you have file_upload disabled, you will have to change this to eg. 'application/x-www-form-urlencoded'
00068                 'textfile_ext' => 'txt,html,htm,css,inc,php,php3,tmpl,js,sql',  // Text file extensions. Those that can be edited. php,php3 cannot be edited in webspace if they are disallowed! Notice:
00069                 'contentTable' => '',                                   // This is the page-content table (Normally 'tt_content')
00070                 'T3instID' => 'N/A',                                    // A unique installation ID - not used yet. The idea is that a TYPO3 installation can identify itself by this ID string to the Extension Repository on TYPO3.org so that we can keep a realistic count of serious TYPO3 installations.
00071                 'binPath' => '',                                                // String, comma seperated list: list of absolute paths where external programs should be searched for
00072                 't3lib_cs_convMethod' => '',                    // String (values: "iconv", "recode", "mbstring", default is homemade PHP-code). Defines which of these PHP-features to use for various Charset conversing functions in t3lib_cs. Will speed up charset conversion radically.
00073                 't3lib_cs_utils' => '',                                 // String (values: "iconv", "recode", "mbstring", default is homemade PHP-code). Defines which of these PHP-features to use for various Charset processing functions in t3lib_cs. Will speed up charset functions radically.
00074                 'no_pconnect' => 0,                                             // Boolean: If true, "connect" is used instead of "pconnect" when connecting to the database!
00075                 'multiplyDBfieldSize' => 1,                             // Double: 1-5: Amount used to multiply the DB field size when the install tool is evaluating the database size (eg. "2.5"). This is useful if you want to expand the size of fields for utf-8 etc. For western european sites using utf-8 the need should not be for more than twice the normal single-byte size (2) and for chinese / asian languages 3 should suffice.
00076                 'setMemoryLimit' => 0,                                  // Integer, memory_limit in MB: If more than 16, TYPO3 will try to use ini_set() to set the memory limit of PHP to the value. This works only if the function ini_set() is not disabled by your sysadmin.
00077                 'forceReturnPath' => 0,                                 // Boolean: Force return path to be applied in mail() calls. If this is set, all calls to mail() done by t3lib_htmlmail will be called with '-f<return_path> as the 5th parameter. This will make the return path correct on almost all Unix systems. There is a known problem with Postfix below version 2: Mails are not sent if this option is set and Postfix is used. On Windows platforms, the return path is set via a call to ini_set. This has no effect if safe_mode in PHP is on.
00078                 'displayErrors' => -1,                                  // Integer, -1,0,1,2. 0=Do not display any PHP error messages. 1=Display error messages. 2=Display only if client matches TYPO3_CONF_VARS[SYS][devIPmask]. -1=Default setting. With this option, you can override the PHP setting "display_errors". It is suggested that you set this to "0" and enable the "error_log" option in php.ini instead.
00079                 'serverTimeZone' => 1                                   // Integer, GMT offset of servers time (from time()). Default is "1" which is "GMT+1" (central european time). This value can be used in extensions that are GMT aware and wants to convert times to/from other timezones.
00080         ),
00081         'EXT' => Array (        // Options related to the Extension Management
00082                 'noEdit' => 1,                                                  // Boolean: If set, the Extension Manager does NOT allow extension files to be edited! (Otherwise both local and global extensions can be edited.)
00083                 'allowGlobalInstall' => 0,                              // Boolean: If set, global extensions in typo3/ext/ are allowed to be installed, updated and deleted etc.
00084                 'allowLocalInstall' => 1,                               // Boolean: If set, local extensions in typo3conf/ext/ are allowed to be installed, updated and deleted etc.
00085                 'em_devVerUpdate' => 0,                                 // If set, developer versions will also appear as red - ready for upgrade
00086                 'em_alwaysGetOOManual' => 0,                    // If set, OO-manuals are always downloaded
00087                 'em_systemInstall' => 0,                                // If set, you can install extensions in the sysext/ dir. Use this to upgrade the 'cms' and 'lang' extensions.
00088                 'em_TERurls' => array('http://ter.typo3.com/?id=t3_extrep'),
00089 
00090                 'requiredExt' => 'cms,lang,sv',                 // String list: List of extensions which are REQUIRED and cannot be unloaded by the Extension Manager!
00091                 'extCache' => 1,                                                // Int. 0,1,2: 0: ext-scripts (ext_localconf.php and ext_tables.php) are NOT cached, but included every time. 1: scripts cached to typo3conf/temp_CACHED_[sitePathHash]* (saves some milliseconds even with PHP-A), 2: scripts cached and prefix includes a hash based on the 'extList' string, 3: scripts cached to typo3conf/temp_CACHED_* (no hash included at all...)
00092                 'extList' => 'tsconfig_help,context_help,extra_page_cm_options,impexp,belog,aboutmodules,setup,install',                                                // String list: List of extensions which are enabled for this install. Use the Extension Manager (EM) to manage this!
00093                 'extConf' => array(                                             // Config-options for extensions, stored as serialized arrays by extension-keys. Handled automatically by the EM.
00094 //                      '--key--' => array()
00095                 )
00096         ),
00097         'BE' => Array(          // Backend Configuration.
00098                 'unzip_path' => '',                                             // Path to "unzip".
00099                 'diff_path' => 'diff',                                  // Path to "diff". For Windows this program can be downloaded here: http://unxutils.sourceforge.net/
00100                 'fileadminDir' => 'fileadmin/',                 // Path to the fileadmin dir. This is relative to PATH_site. (Automatically mounted for admin-users if set)
00101                 'RTEenabled' => 1,                                              // Boolean. If set, the Rich Text editor will be an option in the backend. Notice that the editor must be enabled per-user and options are configurable. See admin guide.
00102                 'RTE_imageStorageDir' => 'uploads/',    // Default storage directory for Rich Text Editor files
00103                 'RTE_reg' => array(),                                   // Contains arrays of possible RTEs available (keys=extKey, values=cfg-array). Each array contains a key, "objRef", which contains a user function call with prefixed script path and instanciating a persistent global object. This can report back if browser requirements are OK, draw the RTE and do the transformations needed.
00104                 'staticFileEditPath' => 'fileadmin/static/',    // Path to directory with static files for editing (see table sys_staticfiles_edit). Relative to PATH_site.
00105                 'lockRootPath' => '',                                   // This path is used to evaluate if paths outside of PATH_site should be allowed. Ending slash required! This path is also used to restrict userHomePath/groupHomePath. Observe that the first part of 'userHomePath' and 'groupHomePath' must be the value of 'lockRootPath'. Eg. '/home/typo3/'.
00106                 'userHomePath' => '',                                   // Path to the directory where TYPO3 backend-users have their home-dirs.  Eg. '/home/typo3/users/'. A home for backend user 2 would be: '/home/typo3/users/2/'. Ending slash required!
00107                 'groupHomePath' => '',                                  // Path to the directory where TYPO3 backend-groups have their home-dirs. Remember that the first part of this path must be 'lockRootPath'. Eg. '/home/typo3/groups/'. A home for backend group 1 would be: '/home/typo3/groups/1/'. Ending slash required!
00108                 'userUploadDir' => '',                                  // Suffix to the user home dir which is what gets mounted in TYPO3. Eg. if the user dir is "../123_user/" and this value is "/upload" then "../123_user/upload" gets mounted.
00109                 'fileCreateMask' => '0775',                             // File mode mask for unix file systems (when files are uploaded/created). Execute bit is set since some files installed in extensions might need that.
00110                 'folderCreateMask' => '0775',                   // As above, but for folders.
00111                 'createGroup' => '',                                    // Group for newly created files and folders (UNIX only). Group ownership can be changed on unix file systems (see above). Set this if you want to change the group ownership of created files/folders to a specific group. This makes sense in all cases where the webserver is running with a different user/group as you do. Create a new group on your system and add you and the webserver user to the group. Now you can safely set the last bit in fileCreateMask/folderCreateMask to 0 (e.g. 770). Important: The user who is running your webserver needs to be a member of the group you specify here! Otherwise you might get some errors.
00112                 'warning_email_addr' => '',                             // Email-address that will receive a warning if there has been failed logins 4 times within an hour (all users).
00113                 'warning_mode' => '',                                   // Bit 1: If set, warning_email_addr gets a mail everytime a user logs in. Bit 2: If set, a mail is sent if an ADMIN user logs in! Other bits reserved for future options.
00114                 'lockIP' => 4,                                                  // Integer (0-4). Session IP locking for backend users. See [FE][lockIP] for details. Default is 4 (which is locking the FULL IP address to session).
00115                 'sessionTimeout' => 3600,                               // Integer, seconds. Session time out for backend users. Default is 3600 seconds = 1 hour.
00116                 'IPmaskList' => '',                                             // String. Lets you define a list of IP-numbers (with *-wildcards) that are the ONLY ones allowed access to ANY backend activity. On error an error header is sent and the script exits. Works like IP masking for users configurable through TSconfig. See syntax for that (or look up syntax for the function t3lib_div::cmpIP())
00117                 'lockBeUserToDBmounts' => 1,                    // Boolean. If set, the backend user is allowed to work only within his page-mount. It's advisable to leave this on because it makes security easy to manage.
00118                 'lockSSL' => 0,                                                 // Int. 0,1,2: If set (1+2), the backend can only be operated from an ssl-encrypted connection (https). Set to 2 you will be redirected to the https admin-url supposed to be the http-url, but with https scheme instead.
00119                 'enabledBeUserIPLock' => 1,                             // Boolean. If set, the User/Group TSconfig option 'option.lockToIP' is enabled.
00120                 'loginSecurityLevel' => '',                             // String. Keywords that determines the security level of login to the backend. "normal" means the password from the login form is sent in clear-text, "challenged" means the password is not sent but hashed with some other values, "superchallenged" (default) means the password is first hashed before being hashed with the challenge values again (means the password is stored as a hashed string in the database also). DO NOT CHANGE this value manually; without an alternative authentication service it will only prevent logins in TYPO3 since the "superchallenged" method is hardcoded in the default authentication system.
00121                 'adminOnly' => 0,                                               // Int. If set (>=1), the only "admin" users can log in to the backend. If "<=-1" then the backend is totally shut down! For maintenance purposes.
00122                 'disable_exec_function' => 0,                   // Boolean. Don't use exec() function (except for ImageMagick which is disabled by [GFX][im]=0). If set, all fileoperations are done by the default PHP-functions. This is nescessary under windows! On UNIX the system commands by exec() can be used, unless this is disabled.
00123                 'usePHPFileFunctions' => 1,                             // Boolean. If set, all fileoperations are done by the default PHP-functions. Default on UNIX is using the system commands by exec(). You need to set this flag under safe_mode.
00124                 'compressionLevel' => 0,                                // Determines output compression. Requires zlib in your php4 install. Range 1-9, where 1 is least compression (approx. 50%) and 9 is greatest compression (approx 33%). 'true' as value will set the compression based on system load (works with Linux, freebsd). Good default value is 3. For more info, see class in t3lib/class.gzip_encode.php written by Sandy McArthur, Jr. <Leknor@Leknor.com>
00125                 'maxFileSize' => '10000',                               // Integer. If set this is the max fileoperation filesize in kb's set in t3lib/extFileFunctions.
00126                 'forceCharset' => '',                                   // String. Normally the charset of the backend users language selection is used. If you set this value to a charset found in t3lib/csconvtbl/ (or "utf-8") the backend (and database) will ALWAYS use this charset. Always use a lowercase value.
00127                 'installToolPassword' => '',                    // String. This is the md5-hashed password for the Install Tool. Set this to '' and access will be totally denied. PLEASE consider to externally password protect the typo3/install/ folder, eg. with a .htaccess file.
00128                 'trackBeUser' => 0,                                             // Boolean. If set, every invokation of a backend script is logged in sys_trackbeuser. This is used to get a view of the backend users behaviour. Mostly for debugging, support and user interaction analysis. Requires 'beuser_tracking' extension.
00129                 'defaultUserTSconfig' => '',                    // Enter lines of default backend user/group TSconfig.
00130                 'defaultPageTSconfig' => '',                    // Enter lines of default Page TSconfig.
00131                 'defaultPermissions' => array (                 // Default permissions set for new pages in t3lib/tce_main.php. Keys are 'show,edit,delete,new,editcontent'. Enter as comma-list
00132 //                      'user' => '',                           READFILE:                       // default in tce_main is 'show,edit,delete,new,editcontent'. If this is set (uncomment), this value is used instead.
00133 //                      'group' => '',                                                  // default in tce_main is 'show,edit,new,editcontent'. If this is set (uncomment), this value is used instead.
00134 //                      'everybody' => ''                                               // default in tce_main is ''. If this is set (uncomment), this value is used instead.
00135                 ),
00136                 'defaultUC' => array (                                  // Override default settings for BE-users. See class.t3lib_beuserauth.php, array $uc_default
00137                 ),
00138                         // The control of fileextensions goes in two catagories. Webspace and Ftpspace. Webspace is folders accessible from a webbrowser (below TYPO3_DOCUMENT_ROOT) and ftpspace is everything else.
00139                         // The control is done like this: If an extension matches 'allow' then the check returns true. If not and an extension matches 'deny' then the check return false. If no match at all, returns true.
00140                         // You list extensions comma-separated. If the value is a '*' every extension is matched
00141                         // If no fileextension, true is returned if 'allow' is '*', false if 'deny' is '*' and true if none of these matches
00142                         // This configuration below accepts everything in ftpspace and everything in webspace except php3 or php files
00143                 'fileExtensions' => array (
00144                         'webspace' => array('allow'=>'', 'deny'=>'php,php3,php4,php5'),
00145                         'ftpspace' => array('allow'=>'*', 'deny'=>'')
00146                 ),
00147                 'customPermOptions' => array(),                 // Array with sets of custom permission options. Syntax is; 'key' => array('header' => 'header string, language splitted', 'items' => array('key' => array('label, language splitted', 'icon reference', 'Description text, language splitted'))). Keys cannot contain ":|," characters.
00148                 'fileDenyPattern' => '\.php$|\.php.$',  // A regular expression that - if it matches a filename - will deny the file upload/rename or whatever in the webspace. Matching with eregi() (case-insensitive).
00149                 'interfaces' => 'backend',                                      // This determines which interface options is available in the login prompt and in which order (All options: ",backend,frontend")
00150                 'useOnContextMenuHandler' => 1,                 // Boolean. If set, the context menus (clickmenus) in the backend are activated on right-click - although this is not a XHTML attribute!
00151                 'loginLabels' => 'Username|Password|Interface|Log In|Log Out|Backend,Front End|Administration Login on ###SITENAME###|(Note: Cookies and JavaScript must be enabled!)|Important Messages:|Your login attempt did not succeed. Make sure to spell your username and password correctly, including upper/lowercase characters.',          // Language labels of the login prompt.
00152                 'loginNews' => array(),                                         // In this array you can define news-items for the login screen. To this array, add arrays with assoc keys 'date', 'header', 'content' (HTML content) and for those appropriate value pairs
00153                 'XCLASS' => Array(),                                    // See 'Inside TYPO3' document for more information.
00154                 'XLLfile' => Array(),                                   // For extension/overriding of the arrays in 'locallang' files in the backend. See 'Inside TYPO3' for more information.
00155                 'notificationPrefix' => '[TYPO3 Note]',
00156                 'accessListRenderMode' => 'singlebox',  // Can be "singlebox", "checkbox" or blank. Refers to the "renderMode" for the selector boxes in be-groups configuration.
00157                 'explicitADmode' => 'explicitDeny',     // Sets the general allow/deny mode for selector box values. Value can be either "explicitAllow" or "explicitDeny", nothing else!
00158         ),
00159         'FE' => Array(                  // Configuration for the TypoScript frontend (FE). Nothing here relates to the administration backend!
00160                 'png_to_gif' => 0,                                              // Boolean. Enables conversion back to gif of all png-files generated in the frontend libraries. Notice that this leaves an increased number of temporary files in typo3temp/
00161                 'tidy' => 0,                                                    // Boolean. If set, the output html-code will be passed through 'tidy' which is a little program you can get from http://www.w3.org/People/Raggett/tidy/. 'Tidy' cleans the HTML-code for nice display!
00162                 'tidy_option' => 'cached',                              // options [all, cached, output]. 'all' = the content is always passed through 'tidy' before it may be stored in cache. 'cached' = only if the page is put into the cache, 'output' = only the output code just before it's echoed out.
00163                 'tidy_path' => 'tidy -i --quiet true --tidy-mark true -wrap 0 -raw',            // Path with options for tidy. For XHTML output, add " --output-xhtml true"
00164                 'logfile_dir' => '',                                    // Path where TYPO3 should write webserver-style logfiles to. This path must be write-enabled for the webserver. If this path is outside of PATH_site, you have to allow it using [BE][lockRootPath]
00165                 'logfile_write' => '',                                  // Keywords for write-mode of logfiles. Default is unix "echo". Keyword "fputs" will make PHP use "fputs" instead (compliant with safe_mode)
00166                 'publish_dir' => '',                                    // Path where TYPO3 should write staticly published documents. This path must be write-enabled for the webserver. Remember slash AFTER! Eg: 'publish/' or '/www/htdocs/publish/'. See admPanel option 'publish'
00167                 'addAllowedPaths' => '',                                // Additional relative paths (comma-list) to allow TypoScript resources be in. Should be prepended with '/'. If not, then any path where the first part is like this path will match. That is: 'myfolder/ , myarchive' will match eg. 'myfolder/', 'myarchive/', 'myarchive_one/', 'myarchive_2/' ... No check is done to see if this directory actually exists in the root of the site. Paths are matched by simply checking if these strings equals the first part of any TypoScript resource filepath. (See class template, function init() in t3lib/class.t3lib_tsparser.php)
00168                 'allowedTempPaths' => '',                               // Additional paths allowed for temporary images. Used with imgResource. Eg. 'alttypo3temp/,another_temp_dir/';
00169                 'debug' => 0,                                                   // Boolean. If set, some debug HTML-comments may be output somewhere. Can also be set by TypoScript.
00170                 'simulateStaticDocuments' => 0,                 // Boolean. This is the default value for simulateStaticDocuments (configurable with TypoScript which overrides this, if the TypoScript value is present)
00171                 'noPHPscriptInclude' => 0,                              // Boolean. If set, PHP-scripts are not included by TypoScript configurations, unless they reside in 'media/scripts/'-folder. This is a security option to ensure that users with template-access do not terrorize
00172                 'strictFormmail' => TRUE,                               // Boolean. If set, the internal "formmail" feature in TYPO3 will send mail ONLY to recipients which has been encoded by the system itself. This protects against spammers misusing the formmailer.
00173                 'secureFormmail' => TRUE,                               // Boolean. If set, the internal "formmail" feature in TYPO3 will send mail ONLY to the recipients that are defined in the form CE record. This protects against spammers misusing the formmailer.
00174                 'compressionLevel' => 0,                                // Determines output compression. Requires zlib in your php4 install. Range 1-9, where 1 is least compression (approx. 50%) and 9 is greatest compression (approx 33%). 'true' as value will set the compression based on system load (works with Linux, freebsd). Good default value is 3. For more info, see class in t3lib/class.gzip_encode.php written by Sandy McArthur, Jr. <Leknor@Leknor.com>
00175                 'compressionDebugInfo' => 0,                    // Boolean. If set, then in the end of the pages, the sizes of the compressed and non-compressed document is output. This should be used ONLY as a test, because the content is compressed twice in order to output this statistics!
00176                 'pageNotFound_handling' => '',                  // How TYPO3 should handle requests for non-existing/accessible pages. false (default): The 'nearest' page is shown. TRUE or '1': An TYPO3 error box is displayed. Strings: redirect URL, eg. 'notfound.html' or 'http://www.domain.org/errors/notfound.html'. If prefixed with "READFILE:" then it will expect the remaining string to be a HTML file which will be read and outputted directly after having the marker "###CURRENT_URL###" substituted with REQUEST_URI and ###REASON### with reason text, for example: "READFILE:fileadmin/notfound.html". Another option is the prefix "USER_FUNCTION:" which will call a user function, eg. "USER_FUNCTION:typo3conf/pageNotFoundHandling.php:user_pageNotFound->pageNotFound" where the file must contain a class "user_pageNotFound" with a method "pageNotFound" inside with two parameters, $param and $ref
00177                 'pageNotFound_handling_statheader' => 'Status: 404 Not Found',                  // If 'pageNotFound_handling' is enabled, this string will always be sent as header before the actual handling.
00178                 'pageNotFoundOnCHashError' => 0,                // Boolean. If true, a page not found call is made when cHash evaluation errors occur. By default they will just disable caching but still display page output.
00179                 'userFuncClassPrefix' => 'user_',               // This prefix must be the first part of any function or class name called from TypoScript, for instance in the stdWrap function.
00180                 'addRootLineFields' => '',                              // Comma-list of fields from the 'pages'-table. These fields are added to the select query for fields in the rootline.
00181                 'checkFeUserPid' => 1,                                  // Boolean. If set, the pid of fe_user logins must be sent in the form as the field 'pid' and then the user must be located in the pid. If you unset this, you should change the fe_users.username eval-flag 'uniqueInPid' to 'unique' in $TCA. This will do: $TCA['fe_users']['columns']['username']['config']['eval']= 'nospace,lower,required,unique';
00182                 'lockIP' => 2,                                                  // Integer (0-4). If >0, fe_users are locked to (a part of) their REMOTE_ADDR IP for their session. Enhances security but may throw off users that may change IP during their session (in which case you can lower it to 2 or 3). The integer indicates how many parts of the IP address to include in the check. Reducing to 1-3 means that only first, second or third part of the IP address is used. 4 is the FULL IP address and recommended. 0 (zero) disables checking of course.
00183                 'loginSecurityLevel' => '',                             // See description for TYPO3_CONF_VARS[BE][loginSecurityLevel]. Default state for frontend is "normal". Alternative authentication services can implement higher levels if preferred.
00184                 'lifetime' => 0,                                                // Integer, positive. If >0, the cookie of FE users will NOT be a session cookie (deleted when browser is shut down) but rather a cookie with a lifetime of the number of seconds this value indicates. Setting this value to 3600*24*7 will result in automatic login of FE users during a whole week.
00185                 'maxSessionDataSize' => 10000,                  // Integer. Setting the maximum size (bytes) of frontend session data stored in the table fe_session_data. Set to zero (0) means no limit, but this is not recommended since it also disables a check that session data is stored only if a confirmed cookie is set.
00186                 'lockHashKeyWords' => 'useragent',              // Keyword list (Strings commaseparated). Currently only "useragent"; If set, then the FE user session is locked to the value of HTTP_USER_AGENT. This lowers the risk of session hi-jacking. However some cases (like payment gateways) might have to use the session cookie and in this case you will have to disable that feature (eg. with a blank string).
00187                 'defaultUserTSconfig' => '',                    // Enter lines of default frontend user/group TSconfig.
00188                 'defaultTypoScript_constants' => '',    // Enter lines of default TypoScript, constants-field.
00189                 'defaultTypoScript_constants.' => Array(),      // Lines of TS to include after a static template with the uid = the index in the array (Constants)
00190                 'defaultTypoScript_setup' => '',                // Enter lines of default TypoScript, setup-field.
00191                 'defaultTypoScript_setup.' => Array(),          // As above, but for Setup
00192                 'defaultTypoScript_editorcfg' => '',            // Enter lines of default TypoScript, editorcfg-field (Backend Editor Configuration)
00193                 'defaultTypoScript_editorcfg.' => Array(),              // As above, but for Backend Editor Configuration
00194                 'dontSetCookie' => 0,                                   // If set, the no cookies is attempted to be set in the front end. Of course no userlogins are possible either...
00195                 'XCLASS' => Array(),                                    // See 'Inside TYPO3' document for more information.
00196                 'IPmaskMountGroups' => array(                   // This allows you to specify an array of IPmaskLists/fe_group-uids. If the REMOTE_ADDR of the user matches an IPmaskList, then the given fe_group is add to the gr_list. So this is an automatic mounting of a user-group. But no fe_user is logged in though! This feature is implemented for the default frontend user authentication and might not be implemented for alternative authentication services.
00197                         // array('IPmaskList_1','fe_group uid'), array('IPmaskList_2','fe_group uid')
00198                 ),
00199                 'get_url_id_token' => '#get_URL_ID_TOK#',       // This is the token, which is substituted in the output code in order to keep a GET-based session going. Normally the GET-session-id is 5 chars ('&ftu=') + hash_length (norm. 10)
00200                 'content_doktypes' => '1,2,5,7',                        // List of pages.doktype values which can contain content (so shortcut pages and external url pages are excluded, but all pages below doktype 199 should be included. doktype=6 is not either (backend users only...). For doktypes going into menus see class.tslib_menu.php, line 494 (search for 'doktype'))
00201                 'enable_mount_pids' => 1,                                       // If set to "1", the mount_pid feature allowing 'symlinks' in the page tree (for frontend operation) is allowed.
00202                 'pageOverlayFields' => 'uid,title,subtitle,nav_title,media,keywords,description,abstract,author,author_email',                          // List of fields from the table "pages_language_overlay" which should be overlaid on page records. See t3lib_page::getPageOverlay()
00203                 'hidePagesIfNotTranslatedByDefault' => FALSE,   // If TRUE, pages that has no translation will be hidden by default. Basically this will inverse the effect of the page localization setting "Hide page if no translation for current language exists" to "Show page even if no translation exists"
00204         ),
00205         'MODS' => Array(                // Backend Module Configuration (obsolete, make extension instead)
00206         ),
00207         'USER' => Array(                // Here you may define your own setup-vars for use in your include-scripts. (obsolete, make extension instead)
00208         ),
00209         'SC_OPTIONS' => Array(          // Here you can more or less freely define additional configuration for scripts in TYPO3. Of course the features supported depends on the script. See documentation "Inside TYPO3" for examples. Keys in the array are the relative path of a script (for output scripts it should be the "script ID" as found in a comment in the HTML header ) and values can then be anything that scripts wants to define for itself. The key "GLOBAL" is reserved.
00210                 'GLOBAL' => array(
00211                         'softRefParser' => array(
00212                                 'substitute' => 't3lib/class.t3lib_softrefproc.php:&t3lib_softrefproc',
00213                                 'notify' => 't3lib/class.t3lib_softrefproc.php:&t3lib_softrefproc',
00214                                 'images' => 't3lib/class.t3lib_softrefproc.php:&t3lib_softrefproc',
00215                                 'typolink' => 't3lib/class.t3lib_softrefproc.php:&t3lib_softrefproc',
00216                                 'typolink_tag' => 't3lib/class.t3lib_softrefproc.php:&t3lib_softrefproc',
00217                                 'TSconfig' => 't3lib/class.t3lib_softrefproc.php:&t3lib_softrefproc',
00218                                 'TStemplate' => 't3lib/class.t3lib_softrefproc.php:&t3lib_softrefproc',
00219                                 'ext_fileref' => 't3lib/class.t3lib_softrefproc.php:&t3lib_softrefproc',
00220                                 'email' => 't3lib/class.t3lib_softrefproc.php:&t3lib_softrefproc',
00221                                 'url' => 't3lib/class.t3lib_softrefproc.php:&t3lib_softrefproc',
00222                         ),
00223                         'softRefParser_GL' => array()   // Global soft reference parsers
00224                 )
00225         ),
00226         'EXTCONF' => Array (            // Here you may add manually set configuration options for your extensions. Eg. $TYPO3_CONF_VARS['EXTCONF']['my_extension_key']['my_option'] = 'my_value';
00227 //              '--key--' => array()
00228         ),
00229         'SVCONF' => Array (             // Here you may add manually set configuration options for services.
00230 //              Eg.  ...['service_type']['setup']['my_option'] = 'my_value'; Setup options how to handle the service (call it or not and how when)
00231 //              Eg.  ...['service_type']['default']['my_option'] = 'my_value';
00232 //              Eg.  ...['service_type']['service_key']['my_option'] = 'my_value';
00233         )
00234 );
00235 $T3_VAR = array();      // Initialize.
00236 
00237         // TYPO3 version
00238 $TYPO_VERSION = '3.8.1';
00239 define('TYPO3_version', $TYPO_VERSION);
00240 define('TYPO3_branch', '3.8');
00241 
00242 // Database-variables are cleared!
00243 $typo_db = '';                                  // The database name
00244 $typo_db_username = '';                 // The database username
00245 $typo_db_password = '';                 // The database password
00246 $typo_db_host = '';                             // The database host
00247 $typo_db_tables_script = '';    // The filename of the tables.php script in typo3conf/ folder IF the default t3lib/stddb/tables.php should NOT be used for some reason. It's recommended to use the default and modify it through the extTableDef-script, see below.
00248 $typo_db_extTableDef_script = '';       // The filename of an additional script in typo3conf/-folder which is included after tables.php. Code in this script should modify the tables.php-configuration only, and this provides a good way to extend the standard-distributed tables.php file.
00249 
00250         // Include localconf.php. Use this file to configure TYPO3 for your needs and database
00251 if (!@is_file(PATH_typo3conf.'localconf.php'))  die(PATH_typo3conf.'localconf.php is not found!');
00252 require(PATH_typo3conf.'localconf.php');
00253 
00254         // Defining the database setup as constants
00255 define('TYPO3_db', $typo_db);
00256 define('TYPO3_db_username', $typo_db_username);
00257 define('TYPO3_db_password', $typo_db_password);
00258 define('TYPO3_db_host', $typo_db_host);
00259 define('TYPO3_tables_script', $typo_db_tables_script);
00260 define('TYPO3_extTableDef_script', $typo_db_extTableDef_script);
00261 
00262         // Defining backend system languages
00263         // Remember to
00264         //              - update 'setup' extension labels (sysext/setup/mod/locallang.xml)
00265         //              - pages.lang item array (t3lib/stddb/tbl_be.php)
00266         //              - Kickstarter wizard (ext/kickstarter/class.tx_kickstarter_wizard.php)
00267         //              - Add character encoding for lang key in t3lib/class.t3lib_cs.php
00268         //              - Add "csh_[key]" language pack and setup all core ll-XML scripts to point to XML files inside of that. (Kasper: see typo3_l10n/README.prepare_languages.txt)
00269 define('TYPO3_languages', 'default|dk|de|no|it|fr|es|nl|cz|pl|si|fi|tr|se|pt|ru|ro|ch|sk|lt|is|hr|hu|gl|th|gr|hk|eu|bg|br|et|ar|he|ua|lv|jp|vn|ca|ba|kr|eo|my|hi');
00270 
00271         // Unsetting the configured values. Use of these are depreciated.
00272 unset($typo_db);
00273 unset($typo_db_username);
00274 unset($typo_db_password);
00275 unset($typo_db_host);
00276 unset($typo_db_tables_script);
00277 unset($typo_db_extTableDef_script);
00278 
00279 // Based on the configuration of the image processing some options may be forced:
00280 if (!$GLOBALS['TYPO3_CONF_VARS']['GFX']['image_processing'])    {
00281         $GLOBALS['TYPO3_CONF_VARS']['GFX']['im']=0;
00282         $GLOBALS['TYPO3_CONF_VARS']['GFX']['gdlib']=0;
00283 }
00284 if (!$GLOBALS['TYPO3_CONF_VARS']['GFX']['im'])  {
00285         $GLOBALS['TYPO3_CONF_VARS']['GFX']['im_path']='';
00286         $GLOBALS['TYPO3_CONF_VARS']['GFX']['im_path_lzw']='';
00287         $GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext']='gif,jpg,jpeg,png';
00288         $GLOBALS['TYPO3_CONF_VARS']['GFX']['thumbnails'] = 0;
00289 }
00290 if ($GLOBALS['TYPO3_CONF_VARS']['GFX']['im_version_5']) {
00291         $GLOBALS['TYPO3_CONF_VARS']['GFX']['im_negate_mask'] = 1;
00292         $GLOBALS['TYPO3_CONF_VARS']['GFX']['im_no_effects'] = 1;
00293         $GLOBALS['TYPO3_CONF_VARS']['GFX']['im_mask_temp_ext_gif'] = 1;
00294 }
00295 if ($GLOBALS['TYPO3_CONF_VARS']['GFX']['im_version_5']==='gm')  {
00296         $GLOBALS['TYPO3_CONF_VARS']['GFX']['im_imvMaskState'] = 1;
00297         $GLOBALS['TYPO3_CONF_VARS']['GFX']['im_no_effects'] = 1;
00298         $GLOBALS['TYPO3_CONF_VARS']['GFX']['im_v5effects'] = -1;
00299 }
00300 if ($GLOBALS['TYPO3_CONF_VARS']['GFX']['im_imvMaskState'])      {
00301         $GLOBALS['TYPO3_CONF_VARS']['GFX']['im_negate_mask']=$GLOBALS['TYPO3_CONF_VARS']['GFX']['im_negate_mask']?0:1;
00302 }
00303 
00304         // simple debug function which prints output immediately
00305 function xdebug($var='',$br=0)  {
00306                 // If you wish to use the debug()-function, and it does not output something, please edit the IP mask in TYPO3_CONF_VARS
00307         if (!t3lib_div::cmpIP(t3lib_div::getIndpEnv('REMOTE_ADDR'), $GLOBALS['TYPO3_CONF_VARS']['SYS']['devIPmask']))   return;
00308         t3lib_div::debug($var,$br);
00309 }
00310         // Debug function which calls $GLOBALS['error'] error handler if available
00311 function debug($variable='', $name='*variable*', $line='*line*', $file='*file*', $recursiveDepth=3, $debugLevel=E_DEBUG)        {
00312                 // If you wish to use the debug()-function, and it does not output something, please edit the IP mask in TYPO3_CONF_VARS
00313         if (!t3lib_div::cmpIP(t3lib_div::getIndpEnv('REMOTE_ADDR'), $GLOBALS['TYPO3_CONF_VARS']['SYS']['devIPmask']))   return;
00314 
00315         if(@is_callable(array($GLOBALS['error'],'debug'))) {
00316                 $GLOBALS['error']->debug($variable, $name, $line, $file, $recursiveDepth, $debugLevel);
00317         } else {
00318                 $br = ($name == '*variable*') ? 0 : $name;
00319                 t3lib_div::debug($variable, $br);
00320         }
00321 }
00322 function debugBegin() {
00323         if(@is_callable(array($GLOBALS['error'],'debugBegin'))) {
00324                 $GLOBALS['error']->debugBegin();
00325         }
00326 }
00327 function debugEnd() {
00328         if(@is_callable(array($GLOBALS['error'],'debugEnd'))) {
00329                 $GLOBALS['error']->debugEnd();
00330         }
00331 }
00332 
00333 
00334         // Init services array:
00335 $T3_SERVICES = array();
00336 
00337 
00338         // Turn error logging on/off.
00339 if($displayErrors=intval($TYPO3_CONF_VARS['SYS']['displayErrors']!='-1'))       {
00340         if($displayErrors==2)   {       // Special value "2" enables this feature only if $TYPO3_CONF_VARS[SYS][devIPmask] matches
00341                 if (t3lib_div::cmpIP(t3lib_div::getIndpEnv('REMOTE_ADDR'), $GLOBALS['TYPO3_CONF_VARS']['SYS']['devIPmask']))    {
00342                         $displayErrors=1;
00343                 } else {
00344                         $displayErrors=0;
00345                 }
00346         }
00347         @ini_set('display_errors', $displayErrors);
00348 }
00349 
00350 
00351         // Set PHP memory limit depending on value of $TYPO3_CONF_VARS["SYS"]["setMemoryLimit"]
00352 if(intval($TYPO3_CONF_VARS["SYS"]["setMemoryLimit"])>16) {
00353         @ini_set('memory_limit',intval($TYPO3_CONF_VARS["SYS"]["setMemoryLimit"]).'m');
00354 }
00355 
00356 
00357 
00358 // Load extensions:
00359 if (TYPO3_MODE=='FE' && is_object($TT)) $TT->push('Loading localconf.php extensions','');
00360 $TYPO3_LOADED_EXT = t3lib_extMgm::typo3_loadExtensions();
00361 if ($TYPO3_LOADED_EXT['_CACHEFILE'])    {
00362         require(PATH_typo3conf.$TYPO3_LOADED_EXT['_CACHEFILE'].'_ext_localconf.php');
00363 } else {
00364         $temp_TYPO3_LOADED_EXT = $TYPO3_LOADED_EXT;
00365         reset($temp_TYPO3_LOADED_EXT);
00366         while(list($_EXTKEY,$temp_lEDat)=each($temp_TYPO3_LOADED_EXT))  {
00367                 if (is_array($temp_lEDat) && $temp_lEDat['ext_localconf.php'])  {
00368                         $_EXTCONF = $TYPO3_CONF_VARS['EXT']['extConf'][$_EXTKEY];
00369                         require($temp_lEDat['ext_localconf.php']);
00370                 }
00371         }
00372 }
00373 if (TYPO3_MODE=='FE' && is_object($TT)) $TT->pull();
00374 
00375         // Define "TYPO3_DLOG" constant
00376 define('TYPO3_DLOG', $GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_DLOG']);
00377 
00378         // Unsetting other reserved global variables:
00379         // Those which are/can be set in "stddb/tables.php" files:
00380 unset($PAGES_TYPES);
00381 unset($ICON_TYPES);
00382 unset($LANG_GENERAL_LABELS);
00383 unset($TCA);
00384 unset($TBE_MODULES);
00385 unset($TBE_STYLES);
00386 unset($FILEICONS);
00387 
00388         // Those set in init.php
00389 unset($WEBMOUNTS);
00390 unset($FILEMOUNTS);
00391 unset($BE_USER);
00392 
00393         // Those set otherwise:
00394 unset($TBE_MODULES_EXT);
00395 unset($TCA_DESCR);
00396 unset($LOCAL_LANG);
00397 
00398 
00399         // Setting some global vars:
00400 $EXEC_TIME = time();                                    // $EXEC_TIME is set so that the rest of the script has a common value for the script execution time
00401 $SIM_EXEC_TIME = $EXEC_TIME;                    // $SIM_EXEC_TIME is set to $EXEC_TIME but can be altered later in the script if we want to simulate another execution-time when selecting from eg. a database
00402 ?>


Généré par TYPO3 Ameos avec  doxygen 1.4.6