Question

The content element file-links now accepts 10 files max. How to increase them ?

Typo3 Version: 4.4.8

Was it helpful?

Solution

There is an extension that solves your problem here:

http://typo3.org/extensions/repository/view/icti_ext_filelinks/current/

OTHER TIPS

  • TYPO3 Backend Modul "Admin Tools" select "configuration".
  • Select "TCA" in the select box at the top. Then you can see the Typo Configuration Array.
  • Select (click on the small arrow) "tt_content", then "columns", then "media" then "config".
  • Now you can see the "maxitems". If you now click on the entry "maxitems" you will get an php code ($TCA['tt_content']['columns']['media']['config']['maxitems'] = 10;)
  • TYPO3 4.5 or newer: change the value and save, before 4.5 you need to do the next two steps:
  • Copy this code, change the value and insert into typo3conf/extTables.php
  • check if $typo_db_extTableDef_script = 'extTables.php'; is set in your localconf.php

Now you should be able to just change any TCA entry.

Have fun:)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top