TYPO3 CMS  TYPO3_6-2
DefaultConfiguration.php
Go to the documentation of this file.
1 <?php
21 return array(
22  'GFX' => array(
23  // Configuration of the image processing features in TYPO3. 'IM' and 'GD' are short for ImageMagick and GD library respectively.
24  'image_processing' => TRUE, // Boolean: Enables image processing features. Disabling this means NO image processing with either GD or IM!
25  'thumbnails' => TRUE, // Boolean: Enables the use of thumbnails in the backend interface. Thumbnails are generated by IM/partly GD in the file typo3/thumbs.php
26  '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)
27  'gif_compress' => TRUE, // Boolean: Enables the use of the \TYPO3\CMS\Core\Utility\GeneralUtility::gif_compress() workaround function for compressing giffiles made with GD or IM, which probably use only RLE or no compression at all.
28  'imagefile_ext' => 'gif,jpg,jpeg,tif,tiff,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!
29  'gdlib' => TRUE, // Boolean: Enables the use of GD.
30  'gdlib_png' => FALSE, // Boolean: Enables the use of GD, with PNG only. This means that all items normally generated as gif-files will be png-files instead!
31  'im' => TRUE, // Boolean: Enables the use of IM.
32  'im_path' => '/usr/bin/', // Path to the IM tools 'convert', 'combine', 'identify'.
33  '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/'.
34  'im_version_5' => 'im6', // String: Set this either to "im6" or "gm" (uses GraphicsMagick instead of ImageMagick). Setting this value will automatically configure some settings for use with the specified program version.
35  'im_v5effects' => 0, // <p>Integer (-1, 0, 1)</p><dl><dt>0</dt><dd>disabled</dd><dt>-1</dt><dd>Do not sharpen images by default</dd><dt>1</dt><dd>All; blur and sharpening is allowed in ImageMagick.</dd></dl>
36  'im_mask_temp_ext_gif' => 1, // Boolean: This should be set if ImageMagick is version 5+. This is used in \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer 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...
37  'im_noScaleUp' => FALSE, // Boolean: If set, images are not being scaled up if told so (in t3lib/stdgraphics.php)
38  'im_noFramePrepended' => FALSE, // 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.
39  'im_stripProfileCommand' => '+profile \'*\'', // String: Specify the command to strip the profile information, which can reduce thumbnail size up to 60KB. Command can differ in IM/GM, IM also know the -strip command. See <a href="http://www.imagemagick.org/Usage/thumbnails/#profiles" target="_blank">imagemagick.org</a> for details
40  'im_useStripProfileByDefault' => TRUE, // Boolean: If set, the im_stripProfileCommand is used with all IM Image operations by default. See tsRef for setting this parameter explocit for IMAGE generation.
41  'jpg_quality' => 70, // Integer: Default JPEG generation quality
42  'enable_typo3temp_db_tracking' => FALSE, // 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.
43  'TTFdpi' => 96, // 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.
44  'png_truecolor' => TRUE,
45  'colorspace' => 'RGB', // String: Specifiy the colorspace to use. Some ImageMagick versions (like 6.7.0 and above) use the sRGB colorspace, so all images are darker then the original. <br />Possible Values: CMY, CMYK, Gray, HCL, HSB, HSL, HWB, Lab, LCH, LMS, Log, Luv, OHTA, Rec601Luma, Rec601YCbCr, Rec709Luma, Rec709YCbCr, RGB, sRGB, Transparent, XYZ, YCbCr, YCC, YIQ, YCbCr, YUV
46  ),
47  'SYS' => array(
48  // System related concerning both frontend and backend.
49  'lang' => array(
50  'format' => array(
51  'priority' => 'xlf,xml,php'
52  ),
53  'parser' => array(
54  'php' => 'TYPO3\\CMS\\Core\\Localization\\Parser\\LocallangArrayParser',
55  'xml' => 'TYPO3\\CMS\\Core\\Localization\\Parser\\LocallangXmlParser',
56  'xlf' => 'TYPO3\\CMS\\Core\\Localization\\Parser\\XliffParser'
57  )
58  ),
59  '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.
60  'compat_version' => '3.8', // Compatibility version. TYPO3 behavior will try to be compatible with the output from the TYPO3 version set here. It is recommended to change this setting with the Upgrade Wizard.
61  '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.
62  'cookieDomain' => '', // Restricts the domain name for FE and BE session cookies. When setting the value to ".domain.com" (replace domain.com with your domain!), login sessions will be shared across subdomains. Alternatively, if you have more than one domain with sub-domains, you can set the value to a regular expression to match against the domain of the HTTP request. The result of the match is used as the domain for the cookie. eg. /\.(example1|example2)\.com$/ or /\.(example1\.com)|(example2\.net)$/. Separate domains for FE and BE can be set using <a href="#FE-cookieDomain">$TYPO3_CONF_VARS['FE']['cookieDomain']</a> and <a href="#BE-cookieDomain">$TYPO3_CONF_VARS['BE']['cookieDomain']</a> respectively.
63  'cookieSecure' => 0, // <p>Integer (0, 1, 2): Indicates that the cookie should only be transmitted over a secure HTTPS connection from the client.</p><dl><dt>0</dt><dd>always send cookie</dd><dt>1 (force HTTPS)</dt><dd>the cookie will only be set if a secure (HTTPS) connection exists - use this in combination with lockSSL since otherwise the application will fail and throw an exception</dd><dt>2</dt><dd>the cookie will be set in each case, but uses the secure flag if a secure (HTTPS) connection exists.</dd></dl>
64  'cookieHttpOnly' => TRUE, // Boolean: When enabled the cookie will be made accessible only through the HTTP protocol. This means that the cookie won't be accessible by scripting languages, such as JavaScript. This setting can effectively help to reduce identity theft through XSS attacks (although it is not supported by all browsers).
65  'doNotCheckReferer' => FALSE, // 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.
66  'recursiveDomainSearch' => FALSE, // Boolean: If set, the search for domain records will be done recursively by stripping parts of the hostname off until a matching domain record is found.
67  'trustedHostsPattern' => 'SERVER_NAME', // String: Regular expression pattern that matches all allowed hostnames (including their ports) of this TYPO3 installation, or the string "SERVER_NAME" (default). The default value <code>SERVER_NAME</code> checks if the HTTP Host header equals the SERVER_NAME and SERVER_PORT. This is secure in correctly configured hosting environments and does not need further configuration. If you cannot change your hosting environment, you can enter a regular expression here. Examples: <code>.*\.domain\.com</code> matches all hosts that end with <code>.domain.com</code> with all corresponding subdomains. <code>(.*\.domain|.*\.otherdomain)\.com</code> matches all hostnames with subdomains from <code>.domain.com</code> and <code>.otherdomain.com</code>. Be aware that HTTP Host header may also contain a port. If your installation runs on a specific port, you need to explicitly allow this in your pattern, e.g. <code>www\.domain\.com:88</code> allows only <code>www.domain.com:88</code>, <strong>not</strong> <code>www.domain.com</code>. To disable this check completely (not recommended because it is <strong>insecure</strong>) you can use ".*" as pattern.
68  'devIPmask' => '127.0.0.1,::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 \TYPO3\CMS\Core\Utility\GeneralUtility::cmpIP() for details on syntax. Setting this to blank value will deny all. Setting to "*" will allow all.
69  'sqlDebug' => 0, // <p>Integer (0, 1, 2). Allows displaying executed SQL queries in the browser (for debugging purposes and development)</p><dl><dt>0</dt><dd>no SQL shown (default)</dd><dt>1</dt><dd>show only failed queries</dd><dt>2</dt><dd>show all queries</dd></dl>
70  'enable_DLOG' => FALSE, // Boolean: Whether the developer log is enabled. See constant "TYPO3_DLOG"
71  'ddmmyy' => 'd-m-y', // Format of Date-Month-Year - see PHP-function <a href="http://php.net/date" target="_blank">date()</a>
72  'hhmm' => 'H:i', // Format of Hours-Minutes - see PHP-function <a href="http://php.net/date" target="_blank">date()</a>
73  'USdateFormat' => FALSE, // Boolean: If TRUE, dates entered in the TCEforms of the backend will be formatted mm-dd-yyyy
74  '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).
75  '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.
76  'loginCopyrightShowVersion' => FALSE, // Boolean: If set, the current TYPO3 version is shown.
77  'curlUse' => FALSE, // Boolean: If set, try to use cURL to fetch external URLs
78  'curlProxyNTLM' => FALSE, // Boolean: Proxy NTLM authentication support.
82  'curlProxyServer' => '', // String: Proxyserver as http://proxy:port/. Deprecated since 4.6 - will be removed in TYPO3 CMS 7. See below for http options.
86  'curlProxyTunnel' => FALSE, // Boolean: If set, use a tunneled connection through the proxy (useful for websense etc.). Deprecated since 4.6 - will be removed in TYPO3 CMS 7. See below for http options.
90  'curlProxyUserPass' => '', // String: Proxyserver authentication user:pass. Deprecated since 4.6 - will be removed in TYPO3 CMS 7. See below for http options.
94  'curlTimeout' => 0, // Integer: Timeout value for cURL requests in seconds. 0 means to wait indefinitely. Deprecated since 4.6 - will be removed in TYPO3 CMS 7. See below for http options.
95  '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'
96  'textfile_ext' => 'txt,ts,html,htm,css,tmpl,js,sql,xml,csv,xlf', // Text file extensions. Those that can be edited. Executable PHP files may not be editable in webspace if disallowed!
97  'contentTable' => '', // This is the page-content table (Normally 'tt_content')
98  'binPath' => '', // String: List of absolute paths where external programs should be searched for. Eg. <code>/usr/local/webbin/,/home/xyz/bin/</code>. (ImageMagick path have to be configured separately)
99  'binSetup' => '', // String (textarea): List of programs (separated by newline or comma). By default programs will be searched in default paths and the special paths defined by 'binPath'. When PHP has openbasedir enabled the programs can not be found and have to be configured here. Example: <code>perl=/usr/bin/perl,unzip=/usr/local/bin/unzip</code>
100  't3lib_cs_convMethod' => '', // String (values: "iconv", "recode", "mbstring", default is homemade PHP-code). Defines which of these PHP-features to use for various charset conversion functions in t3lib_cs. Will speed up charset conversion radically.
101  't3lib_cs_utils' => '', // String (values: "iconv", "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.
102  'no_pconnect' => TRUE, // Boolean: If TRUE, "connect" is used to connect to the database. If FALSE, a persistent connection using "pconnect" will be established!
103  'dbClientCompress' => FALSE, // Boolean: if TRUE, data exchange between TYPO3 and database server will be compressed. This may improve performance if (1) database serever is on the different server and (2) network connection speed to database server is 100mbps or less. CPU usage will be higher if this option is used but database operations will be executed faster due to much less (up to 3 times) database network traffic. This option has no effect if MySQL server is localhost.
104  'setDBinit' => '', // String (textarea): These commands are executed after the database connection was established. Hint: The previous default "SET NAMES utf8;" is not required any more and will be removed automatically if set!
105  '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.
106  '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.
107  'phpTimeZone' => '', // String: timezone to force for all date() and mktime() functions. A list of supported values can be found at <a href="http://php.net/manual/en/timezones.php" target="_blank">php.net</a>. If this is not set, a valid fallback will be searched for by PHP (php.ini's <a href="http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone" target="_blank">date.timezone</a> setting, server defaults, etc); and if no fallback is found, the value of "UTC" is used instead.
108  'systemLog' => '', // <p>String: semi-colon separated list. Defines one or more logging methods. Possible methods:</p><dl><dt>file,&lt;abs-path-to-file&gt;[,&lt;level&gt;]</dt><dd>logs to a file</dd><dt>mail,&lt;to&gt;[/&lt;from&gt;][,&lt;level&gt;]</dt><dd>sends the log entries via mail</dd><dt>syslog,&lt;facility&gt;,[,&lt;level&gt;]</dt><dd>uses the operating system's log. Facility may be one of LOCAL0..LOCAL7, USER (on Windows USER is the only valid type).</dd><dt>error_log[,,&lt;level&gt;]</dt><dd>uses the PHP error log</dd></dl><p>The &lt;level&gt; is the individual logging level (see <a href="#SYS-systemLogLevel">[SYS][systemLogLevel]</a>).</p>
109  'systemLogLevel' => 0, // <p>Integer (0, 1, 2, 3, 4): Only messages with same or higher severity are logged.</p><ul><li>0: info</li><li>1: notice</li><li>2: warning</li><li>3: error</li><li>4: fatal error</li></ul>
110  'enableDeprecationLog' => '', // If set, this configuration enables the logging of deprecated methods and functions. The following options are allowed: <dl><dt>String: &quot;file&quot; (or integer &quot;1&quot;)</dt><dd>The log file will be written to typo3conf/deprecation_[hash-value].log</dd><dt>String: &quot;devlog&quot;</dt><dd>The log will be written to the development log</dd><dt>String: &quot;console&quot;<dt><dd>The log will be displayed in the Backend's Debug Console.</dd></dl>Logging options &quot;file&quot;, &quot;devlog&quot; and &quot;console&quot; can be combined by comma-separating them.
111  'maxFileNameLength' => 60, // Integer: This is the maximum file name length. The value will be taken into account by basic file operations like renaming or creation of files and folders.
112  'UTF8filesystem' => FALSE, // Boolean: If TRUE then TYPO3 uses utf-8 to store file names. This allows for accented Latin letters as well as any other non-latin characters like Cyrillic and Chinese.
113  'systemLocale' => '', // String: locale used for certain system related functions, e.g. escaping shell commands. If problems with filenames containing special characters occur, the value of this option is probably wrong. See <a href="http://php.net/manual/en/function.setlocale.php" target="_blank">setlocale()</a>.
114  'lockingMode' => 'simple', // String: Define which locking mode is used to control requests to pages being generated. Can be one of either "disable" (no locking), "simple" (checks for file existance), "flock" (using PHPs <a href="http://php.net/flock" target="_blank">flock()</a> function), "semaphore" (using PHPs <a href="http://php.net/sem-acquire" target="_blank">sem_acquire()</a> function). Default is "simple".
115  'reverseProxyIP' => '', // String: list of IP addresses. If TYPO3 is behind one or more (intransparent) reverese proxies the IP addresses must be added here.
116  'reverseProxyHeaderMultiValue' => 'none', // String: "none","first","last": defines which values of a proxy header (eg HTTP_X_FORWARDED_FOR) to use, if more than one is found. "none" discards the value, "first" and "last" use the first/last of the values in the list.
117  'reverseProxyPrefix' => '', // String: optional prefix to be added to the internal URL (SCRIPT_NAME and REQUEST_URI).
118  'reverseProxySSL' => '', // String: '*' or list of IP addresses of proxies that use SSL (https) for the connection to the client, but an unencrypted connection (http) to the server. If '*' all proxies defined in <a href="#SYS-reverseProxyIP">[SYS][reverseProxyIP]</a> use SSL.
119  'reverseProxyPrefixSSL' => '', // String: prefix to be added to the internal URL (SCRIPT_NAME and REQUEST_URI) when accessing the server via an SSL proxy. This setting overrides <a href="#SYS-reverseProxyPrefix">[SYS][reverseProxyPrefix]</a>.
120  'caching' => array(
121  'cacheConfigurations' => array(
122  // The cache_core cache is is for core php code only and must
123  // not be abused by third party extensions.
124  'cache_core' => array(
125  'frontend' => 'TYPO3\CMS\Core\Cache\Frontend\PhpFrontend',
126  'backend' => 'TYPO3\CMS\Core\Cache\Backend\SimpleFileBackend',
127  'options' => array(
128  'defaultLifetime' => 0,
129  ),
130  'groups' => array('system')
131  ),
132  'cache_classes' => array(
133  'frontend' => 'TYPO3\CMS\Core\Cache\Frontend\StringFrontend',
134  'backend' => 'TYPO3\CMS\Core\Cache\Backend\SimpleFileBackend',
135  'options' => array(
136  'defaultLifetime' => 0,
137  ),
138  'groups' => array('system')
139  ),
140  'cache_hash' => array(
141  'frontend' => 'TYPO3\CMS\Core\Cache\Frontend\VariableFrontend',
142  'backend' => 'TYPO3\CMS\Core\Cache\Backend\Typo3DatabaseBackend',
143  'options' => array(),
144  'groups' => array('pages', 'all')
145  ),
146  'cache_pages' => array(
147  'frontend' => 'TYPO3\CMS\Core\Cache\Frontend\VariableFrontend',
148  'backend' => 'TYPO3\CMS\Core\Cache\Backend\Typo3DatabaseBackend',
149  'options' => array(
150  'compression' => TRUE
151  ),
152  'groups' => array('pages', 'all')
153  ),
154  'cache_pagesection' => array(
155  'frontend' => 'TYPO3\CMS\Core\Cache\Frontend\VariableFrontend',
156  'backend' => 'TYPO3\CMS\Core\Cache\Backend\Typo3DatabaseBackend',
157  'options' => array(
158  'compression' => TRUE,
159  'defaultLifetime' => 2592000, // 30 days; set this to a lower value in case your cache gets too big
160  ),
161  'groups' => array('pages', 'all')
162  ),
163  'cache_phpcode' => array(
164  'frontend' => 'TYPO3\CMS\Core\Cache\Frontend\PhpFrontend',
165  'backend' => 'TYPO3\CMS\Core\Cache\Backend\FileBackend',
166  'options' => array(
167  'defaultLifetime' => 0,
168  ),
169  'groups' => array('system')
170  ),
171  'cache_runtime' => array(
172  'frontend' => 'TYPO3\CMS\Core\Cache\Frontend\VariableFrontend',
173  'backend' => 'TYPO3\CMS\Core\Cache\Backend\TransientMemoryBackend',
174  'options' => array(),
175  'groups' => array()
176  ),
177  'cache_rootline' => array(
178  'frontend' => 'TYPO3\CMS\Core\Cache\Frontend\VariableFrontend',
179  'backend' => 'TYPO3\CMS\Core\Cache\Backend\Typo3DatabaseBackend',
180  'options' => array(
181  'defaultLifetime' => 2592000, // 30 days; set this to a lower value in case your cache gets too big
182  ),
183  'groups' => array('pages', 'all')
184  ),
185  'l10n' => array(
186  'frontend' => 'TYPO3\CMS\Core\Cache\Frontend\VariableFrontend',
187  'backend' => 'TYPO3\CMS\Core\Cache\Backend\SimpleFileBackend',
188  'options' => array(
189  'defaultLifetime' => 0,
190  ),
191  'groups' => array('system')
192  ),
193  'extbase_object' => array(
194  'frontend' => 'TYPO3\CMS\Core\Cache\Frontend\VariableFrontend',
195  'backend' => 'TYPO3\CMS\Core\Cache\Backend\Typo3DatabaseBackend',
196  'options' => array(
197  'defaultLifetime' => 0,
198  ),
199  'groups' => array('system')
200  ),
201  'extbase_reflection' => array(
202  'frontend' => 'TYPO3\CMS\Core\Cache\Frontend\VariableFrontend',
203  'backend' => 'TYPO3\CMS\Core\Cache\Backend\Typo3DatabaseBackend',
204  'options' => array(
205  'defaultLifetime' => 0,
206  ),
207  'groups' => array('system')
208  ),
209  ),
210  ),
211  'defaultCategorizedTables' => 'pages,tt_content,sys_file_metadata', // List of comma separated tables that are categorizable by default.
212  'displayErrors' => -1, // <p>Integer (-1, 0, 1, 2). Configures whether PHP errors or Exceptions should be displayed.</p><dl><dt>0</dt><dd>Do not display any PHP error message. Sets PHP "display_errors" setting to 0. Overrides the value of [SYS][exceptionalErrors] and sets it to 0 (= no errors are turned into exceptions). The configured [SYS][productionExceptionHandler] is used as exception handler.</dd><dt>1</dt><dd>Display error messages with the registered [SYS][errorHandler]. Sets PHP "display_errors" setting to 1. The configured [SYS][debugExceptionHandler] is used as exception handler.</dd><dt>2</dt><dd>Lets the [SYS][devIPmask] decide if this setting shall be "1" (user's IP matches) or "0" (IP does not match).</dd><dt>-1</dt><dd>Default setting. TYPO3 CMS does not touch the PHP "display_errors" setting. If [SYS][devIPmask] matches the user's IP address, the configured [SYS][debugExceptionHandler] is used instead of the [SYS][productionExceptionHandler] to handle exceptions.</dd></dl>
213  'productionExceptionHandler' => 'TYPO3\\CMS\\Core\\Error\\ProductionExceptionHandler', // String: Classname to handle exceptions that might happen in the TYPO3-code. Leave empty to disable exception handling. Default: "TYPO3\\CMS\\Core\\Error\\ProductionExceptionHandler". This exception handler displays a nice error message when something went wrong. The error message is logged to the configured logs. Note: The configured "productionExceptionHandler" is used if [SYS][displayErrors] is set to "0" or is set to "-1" and [SYS][devIPmask] doesn't match the user's IP.
214  'debugExceptionHandler' => 'TYPO3\\CMS\\Core\\Error\\DebugExceptionHandler', // String: Classname to handle exceptions that might happen in the TYPO3-code. Leave empty to disable exception handling. Default: "TYPO3\\CMS\\Core\\Error\\DebugExceptionHandler". This exception handler displays the complete stack trace of any encountered exception. The error message and the stack trace is logged to the configured logs. Note: The configured "debugExceptionHandler" is used if [SYS][displayErrors] is set to "1" or is set to "-1" or "2" and the [SYS][devIPmask] matches the user's IP.
215  'errorHandler' => 'TYPO3\\CMS\\Core\\Error\\ErrorHandler', // String: Classname to handle PHP errors. E.g.: TYPO3\CMS\Core\Error\ErrorHandler. This class displays and logs all errors that are registered as [SYS][errorHandlerErrors]. Leave empty to disable error handling. Errors can be logged to syslog (see: [SYS][systemLog]), to the installed developer log and to the "syslog" table. If an error is registered in [SYS][exceptionalErrors] it will be turned into an exception to be handled by the configured exceptionHandler.
216  'errorHandlerErrors' => E_ALL & ~(E_STRICT | E_NOTICE | E_COMPILE_WARNING | E_COMPILE_ERROR | E_CORE_WARNING | E_CORE_ERROR | E_PARSE | E_ERROR), // Integer: The E_* constant that will be handled by the [SYS][errorHandler]. Not all PHP error types can be handled! Default is 30466 = <code>E_ALL & ~(E_STRICT | E_NOTICE | E_COMPILE_WARNING | E_COMPILE_ERROR | E_CORE_WARNING | E_CORE_ERROR | E_PARSE | E_ERROR)</code> (see <a href="http://php.net/manual/en/errorfunc.constants.php" target="_blank">PHP documentation</a>).
217  'exceptionalErrors' => E_ALL & ~(E_STRICT | E_NOTICE | E_COMPILE_WARNING | E_COMPILE_ERROR | E_CORE_WARNING | E_CORE_ERROR | E_PARSE | E_ERROR | E_DEPRECATED | E_WARNING | E_USER_ERROR | E_USER_NOTICE | E_USER_WARNING), // Integer: The E_* constant that will be converted into an exception by the default [SYS][errorHandler]. Default is 20480 = <code>E_ALL & ~(E_STRICT | E_NOTICE | E_COMPILE_WARNING | E_COMPILE_ERROR | E_CORE_WARNING | E_CORE_ERROR | E_PARSE | E_ERROR | E_DEPRECATED | E_WARNING | E_USER_ERROR | E_USER_NOTICE | E_USER_WARNING)</code> (see <a href="http://php.net/manual/en/errorfunc.constants.php" target="_blank">PHP documentation</a>).
218  'enable_errorDLOG' => 0, // Boolean: If set, errors are written to the developer log (requires an installed *devlog* extension).
219  'enable_exceptionDLOG' => 0,// Boolean: If set, exceptions are written to the developer log (requires an installed *devlog* extension).
220  'syslogErrorReporting' => E_ALL & ~(E_STRICT | E_NOTICE), // Integer: Configures which PHP errors should be logged to the configured syslogs (see: [SYS][systemLog]). If set to "0" no PHP errors are logged to the syslog. Default is 30711 = <code>E_ALL & ~(E_STRICT | E_NOTICE)</code> (see <a href="http://php.net/manual/en/errorfunc.constants.php" target="_blank">PHP documentation</a>).
221  'belogErrorReporting' => E_ALL & ~(E_STRICT | E_NOTICE), // Integer: Configures which PHP errors should be logged to the "syslog" table (extension: belog). If set to "0" no PHP errors are logged to the sys_log table. Default is 30711 = <code>E_ALL & ~(E_STRICT | E_NOTICE)</code> (see <a href="http://php.net/manual/en/errorfunc.constants.php" target="_blank">PHP documentation</a>).
222  'locallangXMLOverride' => array(), // For extension/overriding of the arrays in 'locallang' files in frontend and backend. See 'Inside TYPO3' for more information.
223  'generateApacheHtaccess' => 1, // Boolean: TYPO3 can create <em>.htaccess</em> files which are used by Apache Webserver. They are useful for access protection or performance improvements. Currently <em>.htaccess</em> files in the following directories are created, if they do not exist: <ul><li>typo3temp/compressor/</li></ul>You want to disable this feature, if you are not running Apache or want to use own rulesets.
224  'Objects' => array(),
225  'fal' => array(
226  'registeredDrivers' => array(
227  'Local' => array(
228  'class' => 'TYPO3\\CMS\\Core\\Resource\\Driver\\LocalDriver',
229  'shortName' => 'Local',
230  'flexFormDS' => 'FILE:EXT:core/Configuration/Resource/Driver/LocalDriverFlexForm.xml',
231  'label' => 'Local filesystem'
232  )
233  ),
234  'defaultFilterCallbacks' => array(
235  array(
236  'TYPO3\\CMS\\Core\\Resource\\Filter\\FileNameFilter',
237  'filterHiddenFilesAndFolders'
238  )
239  ),
240  'processingTaskTypes' => array(
241  'Image.Preview' => 'TYPO3\\CMS\\Core\\Resource\\Processing\\ImagePreviewTask',
242  'Image.CropScaleMask' => 'TYPO3\\CMS\\Core\\Resource\\Processing\\ImageCropScaleMaskTask'
243  ),
244  'registeredCollections' => array(
245  'static' => 'TYPO3\\CMS\\Core\\Resource\\Collection\\StaticFileCollection',
246  'folder' => 'TYPO3\\CMS\\Core\\Resource\\Collection\\FolderBasedFileCollection',
247  'category' => 'TYPO3\\CMS\\Core\\Resource\\Collection\\CategoryBasedFileCollection',
248  )
249  ),
250  'isInitialInstallationInProgress' => FALSE, // Boolean: If TRUE, the installation is 'in progress'. This value is handled within the install tool step installer internally.
251  'clearCacheSystem' => FALSE, // Boolean: If set, the toolbar menu entry for clearing system caches (core cache, class cache, etc.) is visible for admin users.
252  ),
253  'EXT' => array( // Options related to the Extension Management
254  'allowGlobalInstall' => FALSE, // Boolean: If set, global extensions in typo3/ext/ are allowed to be installed, updated and deleted etc.
255  'allowLocalInstall' => TRUE, // Boolean: If set, local extensions in typo3conf/ext/ are allowed to be installed, updated and deleted etc.
256  'allowSystemInstall' => FALSE, // Boolean: If set, you can install extensions in the sysext/ dir. Use this to upgrade the 'cms' and 'lang' extensions.
257  'excludeForPackaging' => '(CVS|\\..*|.*~|.*\\.bak)', // String: List of directories and files which will not be packaged into extensions nor taken into account otherwise by the Extension Manager. Perl regular expression syntax!
258  'extConf' => array(
259  'saltedpasswords' => serialize(array(
260  'BE.' => array(
261  'saltedPWHashingMethod' => 'TYPO3\\CMS\\Saltedpasswords\\Salt\\PhpassSalt',
262  'forceSalted' => 0,
263  'onlyAuthService' => 0,
264  'updatePasswd' => 1,
265  ),
266  'FE.' => array(
267  'enabled' => 0,
268  'saltedPWHashingMethod' => 'TYPO3\\CMS\\Saltedpasswords\\Salt\\PhpassSalt',
269  'forceSalted' => 0,
270  'onlyAuthService' => 0,
271  'updatePasswd' => 1,
272  ),
273  )),
274  ),
275  'runtimeActivatedPackages' => array(),
276  ),
277  'BE' => array(
278  // Backend Configuration.
279  'lang' => array(
280  'debug' => FALSE
281  ),
282  'unzip_path' => '', // Path to "unzip". Only specify the path here, do not include the program name, it is expected to be called "unzip".
283  'diff_path' => 'diff', // Path to "diff" including the program name. Example: /somepath/specialdiff<br />For Windows this program can be downloaded here: <a href="http://unxutils.sourceforge.net/" target="_blank">unxutils.sourceforge.net</a>
284  'fileadminDir' => 'fileadmin/', // Path to the fileadmin dir. This is relative to PATH_site, DefaultStorage will be created with that configuration, do not access manually but ResourceFactory::getDefaultStorage()
285  'RTEenabled' => TRUE, // 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.
286  'RTE_imageStorageDir' => 'uploads/', // Default storage directory for Rich Text Editor files
287  '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.
288  'staticFileEditPath' => 'fileadmin/static/', // Path to directory with static files for editing (see table sys_staticfiles_edit). Relative to PATH_site.
289  'lockRootPath' => '', // This path is used to evaluate if paths outside of PATH_site should be allowed. Ending slash required!
290  'userHomePath' => '', // Combined folder identifier of the directory where TYPO3 backend-users have their home-dirs. A combined folder identifier looks like this: [storageUid]:[folderIdentifier]. Eg. '2:users/'. A home for backend user 2 would be: '2:users/2/'. Ending slash required!
291  'groupHomePath' => '', // Combined folder identifier of the directory where TYPO3 backend-groups have their home-dirs. A combined folder identifier looks like this: [storageUid]:[folderIdentifier]. Eg. '2:groups/'. A home for backend group 1 would be: '2:groups/1/'. Ending slash required!
292  '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.
293  'fileCreateMask' => '0664', // File mode mask for Unix file systems (when files are uploaded/created).
294  'folderCreateMask' => '2775', // As above, but for folders.
295  '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 error messages.
296  'warning_email_addr' => '', // Email address that will receive notification whenever an attempt to login to the Install Tool is made and that will also receive warnings whenever more than 3 failed backend login attempts (regardless of user) are detected within an hour.
297  'warning_mode' => '', // Bit 1: If set, warning_email_addr will be notified every time a backend user logs in. Bit 2: If set, warning_email_addr will be notified every time an ADMIN backend user logs in. Other bits are reserved for future options.
298  'lockIP' => 4, // Integer (0-4). Session IP locking for backend users. See <a href="#FE-lockIP">[FE][lockIP]</a> for details. Default is 4 (which is locking the FULL IP address to session).
299  'sessionTimeout' => 3600, // Integer: seconds. Session time out for backend users. Default is 3600 seconds = 1 hour.
300  '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 \TYPO3\CMS\Core\Utility\GeneralUtility::cmpIP())
301  'lockBeUserToDBmounts' => TRUE, // 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.
302  'lockSSL' => 0, // <p>Integer (0, 1, 2, 3). If &gt;0, If set (1,2,3), the backend can only be operated from an SSL-encrypted connection (https)</p><dl><dt>0</dt><dd>no locking (default)</dd><dt>1</dt><dd>only allow access via SSL</dd><dt>2</dt><dd>redirect user trying to access non-https admin-urls to SSL URLs instead</dd><dt>3</dt><dd>only the login is forced to SSL, then the user switches back to non-SSL-mode</dd></dl>
303  'lockSSLPort' => 0, // Integer: Use a non-standard HTTPS port for lockSSL. Set this value if you use lockSSL and the HTTPS port of your webserver is not 443.
304  'enabledBeUserIPLock' => TRUE, // Boolean: If set, the User/Group TSconfig option 'option.lockToIP' is enabled.
305  'lockHashKeyWords' => 'useragent', // Keyword list (Strings comma separated). Currently only "useragent"; If set, then the BE user session is locked to the value of HTTP_USER_AGENT. This lowers the risk of session hi-jacking. However in some cases (like during development) you might need to switch the user agent while keeping the session. In this case you can disable that feature (e.g. with a blank string).
306  'cookieDomain' => '', // Same as <a href="#SYS-cookieDomain">$TYPO3_CONF_VARS['SYS']['cookieDomain']</a> but only for BE cookies. If empty, $TYPO3_CONF_VARS['SYS']['cookieDomain'] value will be used.
307  'cookieName' => 'be_typo_user', // String: Set the name for the cookie used for the back-end user session
308  '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), "rsa" uses RSA password encryption (only if the rsaauth extension is installed). 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.
309  'showRefreshLoginPopup' => FALSE, // Boolean: If set, the Ajax relogin will show a real popup window for relogin after the count down. Some auth services need this as they add custom validation to the login form. If it's not set, the Ajax relogin will show an inline relogin window.
310  'adminOnly' => 0, // <p>Integer (-1, 0, 1, 2)</p><dl><dt>-1</dt><dd>total shutdown for maintenance purposes</dd><dt>0</dt><dd>normal operation, everyone can login (default)</dd><dt>1</dt><dd>only admins can login</dd><dt>2</dt><dd>only admins and regular CLI users can login</dd></dl>
311  'disable_exec_function' => FALSE, // Boolean: Don't use exec() function (except for ImageMagick which is disabled by <a href="#GFX-im">[GFX][im]</a>=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.
312  'compressionLevel' => 0, // Determines output compression of BE output. Makes output smaller but slows down the page generation depending on the compression level. Requires a) zlib in your PHP installation and b) special rewrite rules for .css.gzip and .js.gzip (please see _.htacces for an example). Range 1-9, where 1 is least compression and 9 is greatest compression. 'true' as value will set the compression based on the PHP default settings (usually 5). Suggested and most optimal value is 5.
313  'maxFileSize' => '10240', // Integer: If set this is the max filesize in KB's for file operations in the backend. Can be overridden through $TCA per table field separately.
314  'installToolPassword' => '', // String: This is the md5-hashed, salted password for the Install Tool. Set this to '' and access will be totally denied. You may consider to externally protect the typo3/sysext/install/ folder, eg. with a .htaccess file.
315  'pageTree' => array(
316  'preloadLimit' => 50
317  ),
318  'defaultUserTSconfig' => 'options.enableBookmarks=1
319  options.enableShowPalettes=1
320  options.file_list.enableDisplayBigControlPanel=selectable
321  options.file_list.enableDisplayThumbnails=selectable
322  options.file_list.enableClipBoard=selectable
323  options.pageTree {
324  doktypesToShowInNewPageDragArea = 1,6,4,7,3,254,255,199
325  }
326 
327  options.contextMenu.options.leftIcons = 1
328  options.contextMenu {
329  table {
330  virtual_root {
331  disableItems =
332 
333  items {
334  100 = ITEM
335  100 {
336  name = history
337  label = LLL:EXT:lang/locallang_misc.xlf:CM_history
338  spriteIcon = actions-document-history-open
339  displayCondition = canShowHistory != 0
340  callbackAction = openHistoryPopUp
341  }
342  }
343  }
344 
345  pages_root {
346  disableItems =
347 
348  items {
349  100 = ITEM
350  100 {
351  name = view
352  label = LLL:EXT:lang/locallang_core.xlf:cm.view
353  spriteIcon = actions-document-view
354  displayCondition = canBeViewed != 0
355  callbackAction = viewPage
356  }
357 
358  200 = ITEM
359  200 {
360  name = new
361  label = LLL:EXT:lang/locallang_core.xlf:cm.new
362  spriteIcon = actions-page-new
363  displayCondition = canCreateNewPages != 0
364  callbackAction = newPageWizard
365  }
366 
367  300 = DIVIDER
368 
369  400 = ITEM
370  400 {
371  name = history
372  label = LLL:EXT:lang/locallang_misc.xlf:CM_history
373  spriteIcon = actions-document-history-open
374  displayCondition = canShowHistory != 0
375  callbackAction = openHistoryPopUp
376  }
377  }
378  }
379 
380  pages {
381  disableItems =
382 
383  items {
384  100 = ITEM
385  100 {
386  name = view
387  label = LLL:EXT:lang/locallang_core.xlf:cm.view
388  spriteIcon = actions-document-view
389  displayCondition = canBeViewed != 0
390  callbackAction = viewPage
391  }
392 
393  200 = DIVIDER
394 
395  300 = ITEM
396  300 {
397  name = disable
398  label = LLL:EXT:lang/locallang_common.xlf:disable
399  spriteIcon = actions-edit-hide
400  displayCondition = getRecord|hidden = 0 && canBeDisabledAndEnabled != 0
401  callbackAction = disablePage
402  }
403 
404  400 = ITEM
405  400 {
406  name = enable
407  label = LLL:EXT:lang/locallang_common.xlf:enable
408  spriteIcon = actions-edit-unhide
409  displayCondition = getRecord|hidden = 1 && canBeDisabledAndEnabled != 0
410  callbackAction = enablePage
411  }
412 
413  500 = ITEM
414  500 {
415  name = edit
416  label = LLL:EXT:lang/locallang_core.xlf:cm.edit
417  spriteIcon = actions-page-open
418  displayCondition = canBeEdited != 0
419  callbackAction = editPageProperties
420  }
421 
422  600 = ITEM
423  600 {
424  name = info
425  label = LLL:EXT:lang/locallang_core.xlf:cm.info
426  spriteIcon = actions-document-info
427  displayCondition = canShowInfo != 0
428  callbackAction = openInfoPopUp
429  }
430 
431  700 = ITEM
432  700 {
433  name = history
434  label = LLL:EXT:lang/locallang_misc.xlf:CM_history
435  spriteIcon = actions-document-history-open
436  displayCondition = canShowHistory != 0
437  callbackAction = openHistoryPopUp
438  }
439 
440  800 = DIVIDER
441 
442  900 = SUBMENU
443  900 {
444  label = LLL:EXT:lang/locallang_core.xlf:cm.copyPasteActions
445 
446  100 = ITEM
447  100 {
448  name = new
449  label = LLL:EXT:lang/locallang_core.xlf:cm.new
450  spriteIcon = actions-page-new
451  displayCondition = canCreateNewPages != 0
452  callbackAction = newPageWizard
453  }
454 
455  200 = DIVIDER
456 
457  300 = ITEM
458  300 {
459  name = cut
460  label = LLL:EXT:lang/locallang_core.xlf:cm.cut
461  spriteIcon = actions-edit-cut
462  displayCondition = isInCutMode = 0 && canBeCut != 0 && isMountPoint != 1
463  callbackAction = enableCutMode
464  }
465 
466  400 = ITEM
467  400 {
468  name = cut
469  label = LLL:EXT:lang/locallang_core.xlf:cm.cut
470  spriteIcon = actions-edit-cut-release
471  displayCondition = isInCutMode = 1 && canBeCut != 0
472  callbackAction = disableCutMode
473  }
474 
475  500 = ITEM
476  500 {
477  name = copy
478  label = LLL:EXT:lang/locallang_core.xlf:cm.copy
479  spriteIcon = actions-edit-copy
480  displayCondition = isInCopyMode = 0 && canBeCopied != 0
481  callbackAction = enableCopyMode
482  }
483 
484  600 = ITEM
485  600 {
486  name = copy
487  label = LLL:EXT:lang/locallang_core.xlf:cm.copy
488  spriteIcon = actions-edit-copy-release
489  displayCondition = isInCopyMode = 1 && canBeCopied != 0
490  callbackAction = disableCopyMode
491  }
492 
493  700 = ITEM
494  700 {
495  name = pasteInto
496  label = LLL:EXT:lang/locallang_core.xlf:cm.pasteinto
497  spriteIcon = actions-document-paste-into
498  displayCondition = getContextInfo|inCopyMode = 1 || getContextInfo|inCutMode = 1 && canBePastedInto != 0
499  callbackAction = pasteIntoNode
500  }
501 
502  800 = ITEM
503  800 {
504  name = pasteAfter
505  label = LLL:EXT:lang/locallang_core.xlf:cm.pasteafter
506  spriteIcon = actions-document-paste-after
507  displayCondition = getContextInfo|inCopyMode = 1 || getContextInfo|inCutMode = 1 && canBePastedAfter != 0
508  callbackAction = pasteAfterNode
509  }
510 
511  900 = DIVIDER
512 
513  1000 = ITEM
514  1000 {
515  name = delete
516  label = LLL:EXT:lang/locallang_core.xlf:cm.delete
517  spriteIcon = actions-edit-delete
518  displayCondition = canBeRemoved != 0 && isMountPoint != 1
519  callbackAction = removeNode
520  }
521  }
522 
523  1000 = SUBMENU
524  1000 {
525  label = LLL:EXT:lang/locallang_core.xlf:cm.branchActions
526 
527  100 = ITEM
528  100 {
529  name = mountAsTreeroot
530  label = LLL:EXT:lang/locallang_core.xlf:cm.tempMountPoint
531  spriteIcon = actions-system-extension-documentation
532  displayCondition = canBeTemporaryMountPoint != 0 && isMountPoint = 0
533  callbackAction = mountAsTreeRoot
534  }
535 
536  200 = DIVIDER
537 
538  300 = ITEM
539  300 {
540  name = expandBranch
541  label = LLL:EXT:lang/locallang_core.xlf:cm.expandBranch
542  spriteIcon = actions-pagetree-expand
543  displayCondition =
544  callbackAction = expandBranch
545  }
546 
547  400 = ITEM
548  400 {
549  name = collapseBranch
550  label = LLL:EXT:lang/locallang_core.xlf:cm.collapseBranch
551  spriteIcon = actions-pagetree-collapse
552  displayCondition =
553  callbackAction = collapseBranch
554  }
555  }
556  }
557  }
558  }
559  }
560  ',
561  // String (exclude). Enter lines of default backend user/group TSconfig.
562  'defaultPageTSconfig' => 'mod.web_list.enableDisplayBigControlPanel=selectable
563  mod.web_list.enableClipBoard=selectable
564  mod.web_list.enableLocalizationView=selectable
565  mod.wizards.newRecord.pages.show.pageInside=1
566  mod.wizards.newRecord.pages.show.pageAfter=1
567  mod.wizards.newRecord.pages.show.pageSelectPosition=1
568  mod.web_view.previewFrameWidths {
569  1280.label = LLL:EXT:viewpage/Resources/Private/Language/locallang.xlf:computer
570  1024.label = LLL:EXT:viewpage/Resources/Private/Language/locallang.xlf:tablet
571  960.label = LLL:EXT:viewpage/Resources/Private/Language/locallang.xlf:mobile
572  800.label = LLL:EXT:viewpage/Resources/Private/Language/locallang.xlf:computer
573  768.label = LLL:EXT:viewpage/Resources/Private/Language/locallang.xlf:tablet
574  600.label = LLL:EXT:viewpage/Resources/Private/Language/locallang.xlf:tablet
575  640.label = LLL:EXT:viewpage/Resources/Private/Language/locallang.xlf:mobile
576  480.label = LLL:EXT:viewpage/Resources/Private/Language/locallang.xlf:mobile
577  400.label = LLL:EXT:viewpage/Resources/Private/Language/locallang.xlf:mobile
578  360.label = LLL:EXT:viewpage/Resources/Private/Language/locallang.xlf:mobile
579  300.label = LLL:EXT:viewpage/Resources/Private/Language/locallang.xlf:mobile
580  }
581  ',
582  // String (exclude).Enter lines of default Page TSconfig.
583  'defaultPermissions' => array(),
584  'defaultUC' => array(),
585  // 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.
586  // 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.
587  // You list extensions comma-separated. If the value is a '*' every extension is matched
588  // If no fileextension, TRUE is returned if 'allow' is '*', FALSE if 'deny' is '*' and TRUE if none of these matches
589  // This configuration below accepts everything in ftpspace and everything in webspace except php3,php4,php5 or php files
590  'fileExtensions' => array(
591  'webspace' => array('allow' => '', 'deny' => PHP_EXTENSIONS_DEFAULT),
592  'ftpspace' => array('allow' => '*', 'deny' => '')
593  ),
594  '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.
595  'fileDenyPattern' => FILE_DENY_PATTERN_DEFAULT, // A perl-compatible regular expression (without delimiters!) that - if it matches a filename - will deny the file upload/rename or whatever in the webspace. For security reasons, files with multiple extensions have to be denied on an Apache environment with mod_alias, if the filename contains a valid php handler in an arbitary position. Also, ".htaccess" files have to be denied. Matching is done case-insensitive. Default value is stored in constant FILE_DENY_PATTERN_DEFAULT
596  'interfaces' => 'backend', // This determines which interface options is available in the login prompt and in which order (All options: ",backend,frontend")
597  'loginNewsTitle' => '', // Define alternative header message for the LoginNews. If this var is empty, the default header "Important messages:" is displayed.
598  'notificationPrefix' => '[TYPO3 Note]', // String: Used to prefix the subject of mails sent in the taskcenter
599  'accessListRenderMode' => 'checkbox', // Can be "singlebox", "checkbox" or blank. Refers to the "renderMode" for the selector boxes in be-groups configuration.
600  'explicitADmode' => 'explicitDeny', // Sets the general allow/deny mode for selector box values. Value can be either "explicitAllow" or "explicitDeny", nothing else!
601  'niceFlexFormXMLtags' => TRUE, // If set, the flexform XML will be stored with meaningful tags which can be validated with DTD schema. If you rely on custom reading of the XML from pre-4.0 versions you should set this to FALSE if you don't like to change your reader code (internally it is insignificant since \TYPO3\CMS\Core\Utility\GeneralUtility::xml2array() doesn't care for the tags if the index-attribute value is set)
602  'flexFormXMLincludeDiffBase' => TRUE, // If set, an additional tag with index "vXX.vDEFbase" is created for translations in flexforms holding the value of the default language when translation was changed. Used to show diff of value. This setting will change whether the system thinks flexform XML looks clean. For example when FALSE XX.vDEFbase fields will be removed in cleaning while accepted if TRUE (of course)
603  'compactFlexFormXML' => 0, // If set, the flexform XML will not contain indentation spaces making XML more compact
604  'flexformForceCDATA' => 0, // Boolean: If set, will add CDATA to Flexform XML. Some versions of libxml have a bug that causes HTML entities to be stripped from any XML content and this setting will avoid the bug by adding CDATA.
605  'explicitConfirmationOfTranslation' => FALSE, // If set, then the diff-data of localized records is not saved automatically when updated but requires that a translator clicks the special finish_translation/save/close button that becomes available.
606  'versionNumberInFilename' => FALSE, // <p>Boolean: If TRUE, included CSS and JS files will have the timestamp embedded in the filename, ie. filename.1269312081.js. This will make browsers and proxies reload the files if they change (thus avoiding caching issues). IMPORTANT: this feature requires extra .htaccess rules to work (please refer to _.htaccess or the _.htaccess file from the dummy package)</p><p>If FALSE the filemtime will be appended as a query-string.</p>
607  'spriteIconGenerator_handler' => 'TYPO3\\CMS\\Backend\\Sprite\\SimpleSpriteHandler', // String: Used to register own/other spriteGenerating Handler, they have to implement the interface \TYPO3\CMS\Backend\Sprite\SpriteIconGeneratorInterface. If set to "\TYPO3\CMS\Backend\Sprite\SpriteBuildingHandler" icons from extensions will automatically merged into sprites.
608  'debug' => FALSE, // Boolean: If set, the loginrefresh is disabled and pageRenderer is set to debug mode. Use this to debug the backend only!
609  'AJAX' => array( // array of key-value pairs for a unified use of AJAX calls in the TYPO3 backend. Keys are the unique ajaxIDs where the value will be resolved to call a method in an object. See ajax.php for more information.
610  'SC_alt_db_navframe::expandCollapse' => array(
611  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Controller\\PageTreeNavigationController->ajaxExpandCollapse',
612  'csrfTokenCheck' => TRUE
613  ),
614  'SC_alt_file_navframe::expandCollapse' => array(
615  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Controller\\FileSystemNavigationFrameController->ajaxExpandCollapse',
616  'csrfTokenCheck' => TRUE
617  ),
618  'TYPO3_tcefile::process' => array(
619  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Controller\\File\\FileController->processAjaxRequest',
620  'csrfTokenCheck' => TRUE
621  ),
622  't3lib_TCEforms_inline::createNewRecord' => array(
623  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Form\\Element\\InlineElement->processAjaxRequest',
624  'csrfTokenCheck' => TRUE
625  ),
626  't3lib_TCEforms_inline::getRecordDetails' => array(
627  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Form\\Element\\InlineElement->processAjaxRequest',
628  'csrfTokenCheck' => TRUE
629  ),
630  't3lib_TCEforms_inline::synchronizeLocalizeRecords' => array(
631  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Form\\Element\\InlineElement->processAjaxRequest',
632  'csrfTokenCheck' => TRUE
633  ),
634  't3lib_TCEforms_inline::setExpandedCollapsedState' => array(
635  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Form\\Element\\InlineElement->processAjaxRequest',
636  'csrfTokenCheck' => TRUE
637  ),
638  't3lib_TCEforms_suggest::searchRecord' => array(
639  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Form\\Element\\SuggestElement->processAjaxRequest',
640  'csrfTokenCheck' => TRUE
641  ),
642  'ShortcutMenu::getGroups' => array(
643  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Toolbar\\ShortcutToolbarItem->getAjaxShortcutGroups',
644  'csrfTokenCheck' => TRUE
645  ),
646  'ShortcutMenu::saveShortcut' => array(
647  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Toolbar\\ShortcutToolbarItem->setAjaxShortcut',
648  'csrfTokenCheck' => TRUE
649  ),
650  'ShortcutMenu::render' => array(
651  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Toolbar\\ShortcutToolbarItem->renderAjax',
652  'csrfTokenCheck' => TRUE
653  ),
654  'ShortcutMenu::delete' => array(
655  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Toolbar\\ShortcutToolbarItem->deleteAjaxShortcut',
656  'csrfTokenCheck' => TRUE
657  ),
658  'ShortcutMenu::create' => array(
659  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Toolbar\\ShortcutToolbarItem->createAjaxShortcut',
660  'csrfTokenCheck' => TRUE
661  ),
662  'ModuleMenu::saveMenuState' => array(
663  'callbackMethod' => 'TYPO3\\CMS\\Backend\\View\\ModuleMenuView->saveMenuState',
664  'csrfTokenCheck' => TRUE
665  ),
666  'ModuleMenu::getData' => array(
667  'callbackMethod' => 'TYPO3\\CMS\\Backend\\View\\ModuleMenuView->getModuleData',
668  'csrfTokenCheck' => TRUE
669  ),
670  'BackendLogin::login' => array(
671  'callbackMethod' => 'TYPO3\\CMS\\Backend\\AjaxLoginHandler->login',
672  // Needs to be unprotected
673  'csrfTokenCheck' => FALSE
674  ),
675  'BackendLogin::logout' => array(
676  'callbackMethod' => 'TYPO3\\CMS\\Backend\\AjaxLoginHandler->logout',
677  // Needs to be unprotected
678  'csrfTokenCheck' => FALSE
679  ),
680  'BackendLogin::refreshLogin' => array(
681  'callbackMethod' => 'TYPO3\\CMS\\Backend\\AjaxLoginHandler->refreshLogin',
682  // Needs to be unprotected
683  'csrfTokenCheck' => FALSE
684  ),
685  'BackendLogin::isTimedOut' => array(
686  'callbackMethod' => 'TYPO3\\CMS\\Backend\\AjaxLoginHandler->isTimedOut',
687  // Needs to be unprotected
688  'csrfTokenCheck' => FALSE
689  ),
690  'BackendLogin::getChallenge' => array(
691  'callbackMethod' => 'TYPO3\\CMS\\Backend\\AjaxLoginHandler->getChallenge',
692  // Needs to be unprotected
693  'csrfTokenCheck' => FALSE
694  ),
695  'ExtDirect::getAPI' => array(
696  'callbackMethod' => 'TYPO3\\CMS\\Core\\ExtDirect\\ExtDirectApi->getAPI',
697  // No need to be CSRF protected
698  'csrfTokenCheck' => FALSE
699  ),
700  'ExtDirect::route' => array(
701  'callbackMethod' => 'TYPO3\\CMS\\Core\\ExtDirect\\ExtDirectRouter->route',
702  // All ExtJS calls are CSRF protected with another token
703  'csrfTokenCheck' => FALSE
704  ),
705  'DocumentTemplate::getFlashMessages' => array(
706  'callbackMethod' => 'TYPO3\\CMS\\Backend\\Template\\DocumentTemplate->renderFlashMessages',
707  'csrfTokenCheck' => TRUE
708  ),
709  ),
710  'HTTP' => array(
711  'Response' => array(
712  'Headers' => array('clickJackingProtection' => 'X-Frame-Options: SAMEORIGIN')
713  )
714  ),
715  'XCLASS' => array()
716  ),
717  'FE' => array( // Configuration for the TypoScript frontend (FE). Nothing here relates to the administration backend!
718  'activateContentAdapter' => TRUE, // Boolean: TYPO3 Frontend can transform tt_content and pages records using FAL back to into a format like DB records have been in pre 6.x, so legacy Typoscript can work with it. <strong><em>WARNING: THIS IS SLOW!</em></strong>
719  'png_to_gif' => FALSE, // 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/
720  '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 \TYPO3\CMS\Core\TypoScript\Parser\TypoScriptParser)
721  'allowedTempPaths' => '', // Additional paths allowed for temporary images. Used with imgResource. Eg. 'alttypo3temp/,another_temp_dir/';
722  'debug' => FALSE, // Boolean: If set, some debug HTML-comments may be output somewhere. Can also be set by TypoScript.
723  'noPHPscriptInclude' => FALSE, // Boolean: If set, PHP-scripts are not included by TypoScript configurations, unless they reside in the folders typo3/ext/, typo3/sysext/ or typo3conf/ext. This is a security option to ensure that users with template-access do not terrorize
724  '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.
725  '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.
726  'formmailMaxAttachmentSize' => 250000, // Integer: Sets the maximum allowed size (in bytes) of attachments for the internal "formmail" feature.
727  'compressionLevel' => 0, // Integer: Determines output compression of FE output. Makes output smaller but slows down the page generation depending on the compression level. Requires zlib in your PHP installation. Range 1-9, where 1 is least compression and 9 is greatest compression. 'true' as value will set the compression based on the PHP default settings (usually 5). Suggested and most optimal value is 5.
728  'pageNotFound_handling' => '', // <p>How TYPO3 should handle requests for non-existing/accessible pages.</p> <dl><dt>empty (default)</dt><dd>The next visible page upwards in the page tree is shown.</dd> <dt>'true' or '1'</dt><dd>An error message is shown.</dd><dt>String</dt><dd>Static HTML file to show (reads content and outputs with correct headers), e.g. 'notfound.html' or 'http://www.example.org/errors/notfound.html'.</dd> <dt>Prefix "REDIRECT:"</dt><dd> If prefixed with "REDIRECT:" it will redirect to the URL/script after the prefix.</dd><dt>Prefix "READFILE:"</dt><dd>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".</dd> <dt>Prefix "USER_FUNCTION:"</dt><dd> If prefixed with "USER_FUNCTION:" a user function is called, e.g. "USER_FUNCTION:fileadmin/class.user_notfound.php:user_notFound->pageNotFound" where the file must contain a class "user_notFound" with a method "pageNotFound" inside with two parameters $param and $ref.</dd></dl>
729  'pageNotFound_handling_statheader' => 'HTTP/1.0 404 Not Found', // If 'pageNotFound_handling' is enabled, this string will always be sent as header before the actual handling.
730  'pageNotFoundOnCHashError' => TRUE, // Boolean: If TRUE, a page not found call is made when cHash evaluation error occurs, otherwise caching is disabled and page output is displayed.
731  'pageUnavailable_handling' => '', // <p>How TYPO3 should handle requests when pages are unavailable due to system problems.</p><dl><dt>empty (default)</dt><dd>An error message is shown.</dd><dt>String</dt><dd>HTML file or URL to show (reads content and outputs with correct headers), e.g. 'unavailable.html' or 'http://www.example.org/errors/unavailable.html'.</dd><dt>Prefix "REDIRECT:"</dt><dd>If prefixed "REDIRECT:" it will redirect to the URL/script after the prefix.</dd><dt>Prefix "READFILE:"</dt><dd>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/unavailable.html".</dd><dt>Prefix "USER_FUNCTION:"</dt><dd>If prefixed "USER_FUNCTION:" then it will call a user function, eg. "USER_FUNCTION:fileadmin/class.user_unavailable.php:user_unavailable->pageUnavailable" where the file must contain a class "user_unavailable" with a method "pageUnavailable" inside with two parameters $param and $ref. If the client matches <a href="#SYS-devIPmask">[SYS][devIPmask]</a>, this setting is ignored and the page is shown as normal.</dd></dl>
732  'pageUnavailable_handling_statheader' => 'HTTP/1.0 503 Service Temporarily Unavailable', // If 'pageUnavailable_handling' is enabled, this string will always be sent as header before the actual handling.
733  'pageUnavailable_force' => FALSE, // Boolean: If TRUE, pageUnavailable_handling is used for every frontend page. If the client matches <a href="#SYS-devIPmask">[SYS][devIPmask]</a>, the page is shown as normal. This is useful during temporary site maintenance.
734  'addRootLineFields' => '', // Comma-list of fields from the 'pages'-table. These fields are added to the select query for fields in the rootline.
735  'checkFeUserPid' => TRUE, // 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';
736  '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.
737  'loginSecurityLevel' => '', // See description for <a href="#BE-loginSecurityLevel">[BE][loginSecurityLevel]</a>. Default state for frontend is "normal". Alternative authentication services can implement higher levels if preferred. For example, "rsa" level uses RSA password encryption (only if the rsaauth extension is installed)
738  'lifetime' => 0, // Integer: positive. If >0, the cookie of FE users will have a lifetime of the number of seconds this value indicates. Otherwise it will be a session cookie (deleted when browser is shut down). Setting this value to 604800 will result in automatic login of FE users during a whole week, 86400 will keep the FE users logged in for a day.
739  'sessionDataLifetime' => 86400, // Integer: positive. If >0, the session data will timeout and be removed after the number of seconds given (86400 seconds represents 24 hours).
740  'permalogin' => 0, // <p>Integer:</p><dl><dt>-1</dt><dd>Permanent login for FE users disabled.</dd><dt>0</dt><dd>By default permalogin is disabled for FE users but can be enabled by a form control in the login form.</dd><dt>1</dt><dd>Permanent login is by default enabled but can be disabled by a form control in the login form.</dd><dt>2</dt><dd>Permanent login is forced to be enabled.// In any case, permanent login is only possible if <a href="#FE-lifetime">[FE][lifetime]</a> lifetime is > 0.</dd></dl>
741  '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.
742  'cookieDomain' => '', // Same as <a href="#SYS-cookieDomain">$TYPO3_CONF_VARS['SYS']['cookieDomain']</a> but only for FE cookies. If empty, $TYPO3_CONF_VARS['SYS']['cookieDomain'] value will be used.
743  'cookieName' => 'fe_typo_user', // String: Set the name for the cookie used for the front-end user session
744  '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).
745  'defaultUserTSconfig' => '', // String (textarea). Enter lines of default frontend user/group TSconfig.
746  'defaultTypoScript_constants' => '', // String (textarea). Enter lines of default TypoScript, constants-field.
747  'defaultTypoScript_constants.' => array(), // Lines of TS to include after a static template with the uid = the index in the array (Constants)
748  'defaultTypoScript_setup' => '', // String (textarea). Enter lines of default TypoScript, setup-field.
749  'defaultTypoScript_setup.' => array(), // Lines of TS to include after a static template with the uid = the index in the array (Setup)
750  'additionalAbsRefPrefixDirectories' => '', // Enter additional directories to be prepended with absRefPrefix. Directories must be comma-separated. TYPO3 already prepends the following directories: media/, typo3conf/ext/, and all local storages
751  '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.
752  // array('IPmaskList_1','fe_group uid'), array('IPmaskList_2','fe_group uid')
753  ),
754  '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 ('&amp;ftu=') + hash_length (norm. 10)
755  '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...).
756  'enable_mount_pids' => TRUE, // Boolean: If set to "1", the mount_pid feature allowing 'symlinks' in the page tree (for frontend operation) is allowed.
757  'pageOverlayFields' => 'uid,title,subtitle,nav_title,media,keywords,description,abstract,author,author_email,url,urltype,shortcut,shortcut_mode', // List of fields from the table "pages_language_overlay" which should be overlaid on page records. See t3lib_page::getPageOverlay()
758  'hidePagesIfNotTranslatedByDefault' => FALSE, // Boolean: 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"
759  'eID_include' => array(), // Array of key/value pairs where key is "tx_[ext]_[optional suffix]" and value is relative filename of class to include. Key is used as "?eID=" for index_ts.php to include the code file which renders the page from that point. (Useful for functionality that requires a low initialization footprint, eg. frontend ajax applications)
760  'disableNoCacheParameter' => FALSE, // Boolean: If set, the no_cache request parameter will become ineffective. This is currently still an experimental feature and will require a website only with plugins that don't use this parameter. However, using "&amp;no_cache=1" should be avoided anyway because there are better ways to disable caching for a certain part of the website (see COA_INT/USER_INT documentation in TSref).
761  'cacheHash' => array(), // Array: Processed values of the cHash* parameters, handled by core bootstrap internally
762  'cHashIncludePageId' => FALSE, // Boolean: If enabled the cHash calculation is bound to the current page ID. This is recommended to avoid generation of not required page cache entries. Changing this value will void all links that have a cHash argument, as the cHash will change.
763  'cHashExcludedParameters' => 'L', // String: The the given parameters will be ignored in the cHash calculation. Example: L,tx_search_pi1[query]
764  'cHashOnlyForParameters' => '', // String: Only the given parameters will be evaluated in the cHash calculation. Example: tx_news_pi1[uid]
765  'cHashRequiredParameters' => '', // Optional: Configure Parameters that require a cHash. If no cHash is given but one of the parameters are set, then TYPO3 triggers the configured cHash Error behaviour
766  'cHashExcludedParametersIfEmpty' => '', // Optional: Configure Parameters that are only relevant for the chash if there's an associated value available. And asterisk "*" can be used to skip all empty parameters.
767  'workspacePreviewLogoutTemplate' => '', // If set, points to an HTML file relative to the TYPO3_site root which will be read and outputted as template for this message. Example: fileadmin/templates/template_workspace_preview_logout.html. Inside you can put the marker %1$s to insert the URL to go back to. Use this in &lt;a href="%1$s"&gt;Go back...&lt;/a&gt; links
768  'versionNumberInFilename' => 'querystring', // String: embed,querystring,''. Allows to automatically include a version number (timestamp of the file) to referred CSS and JS filenames on the rendered page. This will make browsers and proxies reload the files if they change (thus avoiding caching issues). Set to 'embed' will have the timestamp embedded in the filename, ie. filename.1269312081.js. IMPORTANT: 'embed' requires extra .htaccess rules to work (please refer to _.htaccess or the _.htaccess file from the dummy package)<p>Set to 'querystring' (default setting) to append the version number as a query parameter (doesn't require mod_rewrite). Set to '' will turn this functionality off (behaves like TYPO3 &lt; v4.4).</p>
769  'contentRenderingTemplates' => array(), // Array to define the TypoScript parts that define the main content rendering. Extensions like "css_styled_content" provide content rendering templates. Other extensions like "felogin" or "indexed search" extend these templates and their TypoScript parts are added directly after the content templates. See EXT:css_styled_content/ext_localconf.php and EXT:frontend/Classes/TypoScript/TemplateService.php
770  'XCLASS' => array(), // See 'Inside TYPO3' document for more information.
771  ),
772  'MAIL' => array( // Mail configurations to tune how \TYPO3\CMS\Core\Mail\ classes will send their mails.
773  'transport' => 'mail', // <p>String:</p><dl><dt>mail</dt><dd>Sends messages by delegating to PHP's internal mail() function. No further settings required. This is the most unreliable option. If you are serious about sending mails, consider using "smtp" or "sendmail".</dd><dt>smtp</dt><dd>Sends messages over the (standardized) Simple Message Transfer Protocol. It can deal with encryption and authentication. Most flexible option, requires a mail server and configurations in transport_smtp_* settings below. Works the same on Windows, Unix and MacOS.</dd><dt>sendmail</dt><dd>Sends messages by communicating with a locally installed MTA - such as sendmail. See setting transport_sendmail_command bellow.<dd><dt>mbox</dt><dd>This doesn't send any mail out, but instead will write every outgoing mail to a file adhering to the RFC 4155 mbox format, which is a simple text file where the mails are concatenated. Useful for debugging the mail sending process and on development machines which cannot send mails to the outside. Configure the file to write to in the 'transport_mbox_file' setting below</dd><dt>&lt;classname&gt;</dt><dd>Custom class which implements Swift_Transport. The constructor receives all settings from the MAIL section to make it possible to add custom settings.</dd></dl>
774  'transport_smtp_server' => 'localhost:25', // String: <em>only with transport=smtp</em>: &lt;server:port> of mailserver to connect to. &lt;port> defaults to "25".
775  'transport_smtp_encrypt' => '', // String: <em>only with transport=smtp</em>: Connect to the server using the specified transport protocol. Requires openssl library. Usually available: <em>ssl, sslv2, sslv3, tls</em>. Check <a href="http://www.php.net/stream_get_transports" target="_blank">stream_get_transports()</a>.
776  'transport_smtp_username' => '', // String: <em>only with transport=smtp</em>: If your SMTP server requires authentication, enter your username here.
777  'transport_smtp_password' => '', // String: <em>only with transport=smtp</em>: If your SMTP server requires authentication, enter your password here.
778  'transport_sendmail_command' => '/usr/sbin/sendmail -bs', // String: <em>only with transport=sendmail</em>: The command to call to send a mail locally. The default works on most modern UNIX based mail server (sendmail, postfix, exim)
779  'transport_mbox_file' => '', // String: <em>only with transport=mbox</em>: The file where to write the mails into. This file will be conforming the mbox format described in RFC 4155. It is a simple text file with a concatenation of all mails. Path must be absolute.
780  'defaultMailFromAddress' => '', // String: This default email address is used when no other "from" address is set for a TYPO3-generated email. You can specify an email address only (ex. info@example.org).
781  'defaultMailFromName' => '', // String: This default name is used when no other "from" name is set for a TYPO3-generated email.
782  ),
783  'HTTP' => array( // HTTP configuration to tune how TYPO3 behaves on HTTP request. Have a look at <a href="http://pear.php.net/manual/en/package.http.http-request2.config.php>HTTP_Request2 Manual</a> for some background information on those settings.
784  'adapter' => 'socket', // String: Default adapter - either "socket" or "curl".
785  'connect_timeout' => 10, // Integer: Default timeout for connection. Exception will be thrown if connecting to remote host takes more than this number of seconds.
786  'timeout' => 0, // Integer: Default timeout for whole request. Exception will be thrown if sending the request takes more than this number of seconds. Should be greater than connection timeout (see above) or "0" to not set a limit. Defaults to "0".
787  'protocol_version' => '1.1', // String: Default HTTP protocol version. Use either "1.0" or "1.1".
788  'follow_redirects' => FALSE, // Boolean: If set, redirects are followed by default. If number of tries are exceeded, an exception is thrown.
789  'max_redirects' => 5, // Integer: Maximum number of tries before an exception is thrown.
790  'strict_redirects' => FALSE, // Boolean: Whether to keep request method on redirects via status 301 and 302 (TRUE, needed for compatibility with <a href="http://www.faqs.org/rfcs/rfc2616">RFC 2616</a>) or switch to GET (FALSE, needed for compatibility with most browsers). There are some <a href="http://pear.php.net/manual/en/package.http.http-request2.adapters.php#package.http.http-request2.adapters.curl">issues with cURL adapter</a>. Defaults to FALSE.
791  'proxy_host' => '', // String: Default proxy server as "proxy.example.org" (You must not set the protocol or the port here. Set the port below.)
792  'proxy_port' => '', // Integer: Default proxy server port.
793  'proxy_user' => '', // String: Default user name.
794  'proxy_password' => '', // String: Default password.
795  'proxy_auth_scheme' => 'basic', // String: Default authentication method. Can either be "basic" or "digest". Defaults to "basic".
796  'ssl_verify_peer' => FALSE, // Boolean: Whether to verify peer's SSL certificate. Turned off by default, due to <a href="http://pear.php.net/manual/en/package.http.http-request2.adapters.php#package.http.http-request2.adapters.socket" target="_blank">issues with Socket adapter</a>. You are advised to use the <em>curl</em> adapter and enable this option!
797  'ssl_verify_host' => TRUE, // Boolean: Whether to check that Common Name in SSL certificate matches hostname. There are some <a href="http://pear.php.net/manual/en/package.http.http-request2.adapters.php#package.http.http-request2.adapters.socket" target="_blank">issues with Socket Adapter</a>.
798  'ssl_cafile' => '', // String: Certificate Authority file to verify the peer with (use when ssl_verify_peer is TRUE).
799  'ssl_capath' => '', // String: Directory holding multiple Certificate Authority files.
800  'ssl_local_cert' => '', // String: Name of a file containing local certificate.
801  'ssl_passphrase' => '', // String: Passphrase with which local certificate was encoded.
802  'userAgent' => 'TYPO3/' . TYPO3_version, // String: Default user agent. If empty, this will be "TYPO3/x.y.z", while x.y.z is the current version. This overrides the constant <em>TYPO3_user_agent</em>.
803  ),
804  'LOG' => array(
805  'writerConfiguration' => array(
806  \TYPO3\CMS\Core\Log\LogLevel::DEBUG => array(
807  'TYPO3\\CMS\\Core\\Log\\Writer\\FileWriter' => array(
808  'logFile' => 'typo3temp/logs/typo3.log'
809  )
810  )
811  ),
812  'deprecated' => array(
813  'writerConfiguration' => array(
814  \TYPO3\CMS\Core\Log\LogLevel::WARNING => array(
815  'TYPO3\\CMS\\Core\\Log\\Writer\\FileWriter' => array(
816  'logFile' => 'typo3conf/deprecation.log'
817  )
818  )
819  )
820  )
821  ),
822  'MODS' => array(),
823  'USER' => array(),
824  'SC_OPTIONS' => array(
825  // 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.
826  'GLOBAL' => array(
827  'softRefParser' => array(
828  'substitute' => 'TYPO3\\CMS\\Core\\Database\\SoftReferenceIndex',
829  'notify' => 'TYPO3\\CMS\\Core\\Database\\SoftReferenceIndex',
830  'images' => 'TYPO3\\CMS\\Core\\Database\\SoftReferenceIndex',
831  'typolink' => 'TYPO3\\CMS\\Core\\Database\\SoftReferenceIndex',
832  'typolink_tag' => 'TYPO3\\CMS\\Core\\Database\\SoftReferenceIndex',
833  'TSconfig' => 'TYPO3\\CMS\\Core\\Database\\SoftReferenceIndex',
834  'TStemplate' => 'TYPO3\\CMS\\Core\\Database\\SoftReferenceIndex',
835  'ext_fileref' => 'TYPO3\\CMS\\Core\\Database\\SoftReferenceIndex',
836  'email' => 'TYPO3\\CMS\\Core\\Database\\SoftReferenceIndex',
837  'url' => 'TYPO3\\CMS\\Core\\Database\\SoftReferenceIndex',
838  ),
839  'softRefParser_GL' => array(),
840  // Global soft reference parsers
841  'cliKeys' => array()
842  ),
843  't3lib/class.t3lib_tsfebeuserauth.php' => array(
844  'frontendEditingController' => array(
845  'default' => 'TYPO3\\CMS\\Core\\FrontendEditing\\FrontendEditingController'
846  )
847  )
848  ),
849  'EXTCONF' => array(
850  // Here you may add manually set configuration options for your extensions. Eg. $TYPO3_CONF_VARS['EXTCONF']['my_extension_key']['my_option'] = 'my_value';
851  'cms' => array(
852  'db_layout' => array(
853  'addTables' => array(
854  'fe_users' => array(
855  0 => array(
856  'MENU' => '',
857  'fList' => 'username,usergroup,name,email,telephone,address,zip,city',
858  'icon' => TRUE
859  )
860  )
861  )
862  )
863  )
864  ),
865  'SVCONF' => array()
866 );
if(!defined('ADODB_ERROR_HANDLER_TYPE')) define('ADODB_ERROR_HANDLER_TYPE' E_USER_ERROR