Knowledge Base Article
SugarCRM is an open source CRM application bringing a feature-rich set of business processes that enhance marketing effectiveness, drive sales performance, improve customer satisfaction and provide executive insight into business performance.
By default, its loading times are above average. Here are some tips on how to speed up your SugarCRM:
- Drop the absolute totals from List Views by adding this line to your SugarCRM's config.php file:
'disable_count_query' = true;
Alternatively, you can create a file config_override.php and add this line to it:
$sugar_config['disable_count_query'] = true;
- Disable automatic query repetition on List Views by adding this line to config_override.php:
$sugar_config['save_query'] = 'populate_only';
- Disable client IP verification by adding this line to config_override.php:
$sugar_config["verify_client_ip"] = false;
- Disable VCR control by adding this line to config_override.php:
$sugar_config['disable_vcr'] = true;
- Hide unused subpanels by adding these lines to config_override.php:
$sugar_config['hide_subpanels'] = true;
$sugar_config['hide_subpanels_on_login'] = true;
Rating
|

