Bug #15378
closed
CSV Export in list mode only exports 100 records
Added by Peter Klein almost 19 years ago.
Updated over 14 years ago.
Description
When using the CSV Export in list mode, it only exports the first 100 records.
(issue imported from #M2211)
Files
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.
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.
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
hi all,
is this fixed in recent versions? if not, take it as a friendly reminder ;)
thx alex
The fix is still pending. I'll take care of it...
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.
According to Benni Mack this was fixed together witz #17991. Thank you!
Also available in: Atom
PDF