Hi All,
If some user getting error while going to calender module.
Error: Query limit of 1000 reached for Calendar module
How to resolve this.??
Hi All,
If some user getting error while going to calender module.
Error: Query limit of 1000 reached for Calendar module
How to resolve this.??
Hi All,
I got a solution.
Edit file: config_override.php
$sugar_config[âresource_managementâ][âdefault_limitâ] = 2500;
You can add additional modules into the âspecial query limitâ section.
Edit file: config_override.php
$sugar_config[âresource_managementâ] =
array (
âspecial_query_limitâ => 50000,
âspecial_query_modulesâ =>
array (
0 => âReportsâ,
1 => âExportâ,
2 => âImportâ,
3 => âAdministrationâ,
4 => âSyncâ,
5 => âAccountsâ, // To increase the query limit of 1,000 reached for Accounts module to âspecial_query_limitâ (50,000)
6 => âContactsâ, // To increase the query limit of 1,000 reached for Contacts module to âspecial_query_limitâ (50,000)
7 => âLeadsâ, // To increase the query limit of 1,000 reached for Leads module to âspecial_query_limitâ (50,000)
8 => âMeetingsâ, // To increase the query limit of 1,000 reached for Meetings module to âspecial_query_limitâ (50,000)
9 => âCallsâ, // To increase the query limit of 1,000 reached for Calls module to âspecial_query_limitâ (50,000)
10 => âTasksâ, // To increase the query limit of 1,000 reached for Calls module to âspecial_query_limitâ (50,000)
),
âdefault_limitâ => 1000,
);
For more examples check this link http://kb.omni-ts.com/entry/93/