PHP - php.ini
upload_max_filesize = 100MB
Typo3 - typo3conf/localconf.php
$typo_db_extTableDef_script = “extTables.php”;
$TYPO3_CONF_VARS[“BE”][“maxFileSize”] = 100*1024;
Typo3 - typo3conf/extTables.php
/* Set max media file size to 100 MB */
$GLOBALS[’TCA’][’tt_content’][’columns’][’media’][’config’][’max_size’] = 100*1024;
/* Set max number media file size to 100 */
$GLOBALS[’TCA’][’tt_content’][’columns’][’media’][’config’][’maxitems’] = 100;
/* Set max multimedia file size to 100 MB */
$GLOBALS[’TCA’][’tt_content’][’columns’][’multimedia’][’config’][’max_size’] = 100*1024;
/* Set max number multimedia file size to 100 */
$GLOBALS[’TCA’][’tt_content’][’columns’][’multimedia’][’config’][’maxitems’] = 100;
technorati tags: typo3, config
Kommentare
Kommentar schreiben