Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v11 here: TYPO3 ELTS.
EXT - Extension manager configuration
The following configuration variables can be used to configure settings for the Extension manager:
Attention
Extension specific configuration should be stored in
$GLOBALS
and not here.
Note
The configuration values listed here are keys in the global PHP array
$GLOBALS
.
This variable can be set in one of the following files:
$GLOBALS['TYPO3_CONF_VARS']['EXT']['allowGlobalInstall']
allowGlobalInstall
-
- Path
-
$GLOBALS['TYPO3_CONF_VARS']['EXT']
- type
-
bool
- Default
-
false
If set, global extensions in
typo3/
are allowed to be installed, updated and deleted etc.ext/
$GLOBALS['TYPO3_CONF_VARS']['EXT']['allowLocalInstall']
allowLocalInstall
-
- Path
-
$GLOBALS['TYPO3_CONF_VARS']['EXT']
- type
-
bool
- Default
-
true
If set, local extensions in
typo3conf/
are allowed to be installed, updated and deleted etc.ext/
excludeForPackaging
$GLOBALS['TYPO3_CONF_VARS']['EXT']['excludeForPackaging']
-
- Path
-
$GLOBALS['TYPO3_CONF_VARS']['EXT']
- type
-
list
- Default
-
'
(?:\\. (?!htaccess$).* |.*~ |.*\\. swp |.*\\. bak |node_ modules |bower_ components)'
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!