Error: Query limit of 1000 reached for Home module

Hi,

I have one user that report me an error:

I attach the error screen:

(Error: Query limit of 1000 reached for Home module.)

My file called config_override.php is like that:

<?php /***CONFIGURATOR***/ $sugar_config['email_xss'] = 'YToxMzp7czo2OiJhcHBsZXQiO3M6NjoiYXBwbGV0IjtzOjQ6ImJhc2UiO3M6NDoiYmFzZSI7czo1OiJlbWJlZCI7czo1OiJlbWJlZCI7czo0OiJmb3JtIjtzOjQ6ImZvcm0iO3M6NToiZnJhbWUiO3M6NToiZnJhbWUiO3M6ODoiZnJhbWVzZXQiO3M6ODoiZnJhbWVzZXQiO3M6NjoiaWZyYW1lIjtzOjY6ImlmcmFtZSI7czo2OiJpbXBvcnQiO3M6ODoiXD9pbXBvcnQiO3M6NToibGF5ZXIiO3M6NToibGF5ZXIiO3M6NDoibGluayI7czo0OiJsaW5rIjtzOjY6Im9iamVjdCI7czo2OiJvYmplY3QiO3M6MzoieG1wIjtzOjM6InhtcCI7czo2OiJzY3JpcHQiO3M6Njoic2NyaXB0Ijt9'; $sugar_config['passwordsetting']['systexpirationtype'] = '1'; $sugar_config['passwordsetting']['systexpiration'] = '0'; $sugar_config['passwordsetting']['systexpirationtime'] = ''; $sugar_config['passwordsetting']['SystemGeneratedPasswordON'] = '0'; $sugar_config['SAML_loginurl'] = ''; $sugar_config['SAML_X509Cert'] = ''; $sugar_config['authenticationClass'] = ''; /***CONFIGURATOR***/ I have tried adding the followin sentences in my file config_override.php but doews not work. [b]$sugar_config['Home']['1000'] = 2500;[/b] Any ideas? Thanks to everyone Regards.

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

Brilliant, I shall edit it tonight.

Thank you

Julian