Bug #15378
closedCSV Export in list mode only exports 100 records
0%
Description
When using the CSV Export in list mode, it only exports the first 100 records.
(issue imported from #M2211)
Files
Updated by Peter Niederlag over 18 years ago
Just FYI zto anyone working on this:
apparently the maxItems = 100 are coded at some places in
typo3/class_db_list.inc (grep for '100')
You can give it a try to overriding this via $TCA:
vi[editor] yourextkey/ext_tables.php
t3lib_div::loadTCA('table');
$TCA['table']['interface']['maxSingleDBListItems'] = '1500';
I am not sure if that gets applied to csv-export as well and don't know
how it might impact the performance of the singleview.
Updated by Peter Niederlag over 18 years ago
Easiest way to fix it is by applying a GET/POST "showLimit=xy" to the generated link.
see the file: class.db_list_extra.diff
I'll see if we want to apply this patch to the core.
Updated by Peter Niederlag over 18 years ago
OK. We found a more nice way to do it. :->
patch is in 'class.db_list.inc.diff'
Just unset 'LIMIT' from the query for csv-export
Updated by Alex Widschwendter over 17 years ago
hi all,
is this fixed in recent versions? if not, take it as a friendly reminder ;)
thx alex
Updated by Michael Stucki over 17 years ago
The fix is still pending. I'll take care of it...
Updated by Benni Mack almost 17 years ago
Guys, check out this patch at http://bugs.typo3.org/view.php?id=7148 , I did not search the BT before I wrote this other patch.
I already sent the other one to the core list, so this will go in 4.2 hopefully.
Updated by Michael Stucki almost 17 years ago
According to Benni Mack this was fixed together witz #17991. Thank you!