Is it possible to export a report to csv with 3000+ entries?

Hi All,

Just a quick question, is it possible to export a report to csv with 3000+ entries?

I have been trying this but it fails, I can only export up to 1000 entries.

Thanks.

check this in your config.php

'resource_management' =>
  array (
    'special_query_limit' => 50000,
    'special_query_modules' =>
    array (
      0 => 'Reports',
      1 => 'Export',
      2 => 'Import',
      3 => 'Administration',
      4 => 'Sync',
    ),
    'default_limit' => 1000,
  ),

you’ll need to change the 1000 to a greater number

best regards

1 Like