1 .. include:: ../../Includes.txt
3 ==========================================================================
4 Breaking: #83081 - Removed configuration option BE/fileExtensions/webspace
5 ==========================================================================
12 The file extensions which are allowed to be uploaded, which were previously available under
13 :php:``$TYPO3_CONF_VARS[BE][fileExtensions][webspace]`` called ``allow`` and ``deny`` have been removed.
19 * Using the old configuration option names will result in a PHP notice.
20 * In Import/Export when uploading files :php:``fileDenyPattern`` is used instead of ``allow`` and ``deny``
21 * When using :php:``BasicFileUtility`` directly, only :php:``fileDenyPattern`` is used
24 Affected Installations
25 ======================
27 TYPO3 installations which have set this option in `LocalConfiguration.php` previously, or extensions which
28 still use the old configuration option names.
34 Use :php:``fileDenyPattern`` which is used consistently throughout the core to deny specific file extensions.
36 .. index:: LocalConfiguration, PartiallyScanned