Using TSconfig to tailor TYPO3 to your needs
by jweiland on Apr 17, 2009
- 8,400 views
This presentation shows some of the customization features in the TYPO3 backend for editors
This presentation shows some of the customization features in the TYPO3 backend for editors
Accessibility
Categories
Upload Details
Uploaded via SlideShare as Apple Keynote
Usage Rights
© All Rights Reserved
Statistics
- Likes
- 7
- Downloads
- 0
- Comments
- 1
- Embed Views
- Views on SlideShare
- 8,285
- Total Views
- 8,400
I found that adding the following code (1) does help to prevent the form from allowing only 10 files. But when the form is saved still only 10 files are saved. Then I added the following code (2) to the extTables.php file in typo3conf and the entire problem is solved.
1: TCEFORM.tt_content.media.config.maxitems = 100
2: $GLOBALS['TCA']['tt_content']['columns']['media']['config']['maxitems'] = 100; 3 years ago