Project

General

Profile

Actions

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.

Status:
Closed
Priority:
Should have
Category:
-
Target version:
-
Start date:
2006-01-08
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
3.8.1
PHP Version:
4
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

When using the CSV Export in list mode, it only exports the first 100 records.

(issue imported from #M2211)


Files

class.db_list_extra.diff (667 Bytes) class.db_list_extra.diff Administrator Admin, 2006-08-12 18:18
class.db_list.inc.diff (379 Bytes) class.db_list.inc.diff Administrator Admin, 2006-08-12 21:56
bug_2211_w.diff (1.12 KB) bug_2211_w.diff Administrator Admin, 2007-05-31 12:13
bug_2211.diff (1.99 KB) bug_2211.diff Administrator Admin, 2007-05-31 12:14

Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #17991: CSV export improvementsClosedBenni Mack2008-01-14

Actions
Actions #1

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.

Actions #2

Updated by Sebastian Kurfuerst over 18 years ago

keyword:t3dd06

Actions #3

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.

Actions #4

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

Actions #5

Updated by Michael Stucki over 18 years ago

Wonderful! :-)

Actions #6

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

Actions #7

Updated by Michael Stucki over 17 years ago

The fix is still pending. I'll take care of it...

Actions #8

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.

Actions #9

Updated by Michael Stucki almost 17 years ago

According to Benni Mack this was fixed together witz #17991. Thank you!

Actions

Also available in: Atom PDF