Breaking: #71110 - TYPO3-specific Upload Limit removed
See forge#71110
Description
TYPO3 has a specific upload limit setting, that is set to 10MB by default, to manually limit down the PHP-specific
setting max_
. If not configured properly the PHP limit was lower than the TYPO3-specific limit.
The TYPO3 setting $TYPO3_
has been removed and the PHP-internal limit is now the
upper barrier.
Impact
Setting the option mentioned above has no effect anymore. The PHP limit is used instead.
The TCA setting max_
for fe_
has been removed, allowing editors to upload images with a size
up to the PHP-specific limit.
Affected Installations
Extensions that use $GLOBALS
as default for the TCA setting max_
need adjustment, if the PHP-specific upload limit is higher than $TYPO3_
.
Migration
Explicitly set a value for max_
or drop those lines from your TCA configuration.