Error: Query limit of 1000 reached for Home module

Edit the following in config.php

'resource_management' => 
  array (
    'special_query_limit' => 5000,
    'special_query_modules' => 
    array (
      0 => 'Reports',
      1 => 'Export',
      2 => 'Import',
      3 => 'Administration',
      4 => 'Sync',
    ),
    'default_limit' => 1000,  <-- increase this limit
  ),

or add the following line in config_override.php

$sugar_config['resource_management']['default_limit'] = '<limit>';
2 Likes