php - SugarCRM Request Timeout
682
I'm using SugarCRM to fetch records (more than 1000+ records) in Cases. I already set up config_override.php:
$sugar_config['max_record_fetch_size']= 1200;
php.ini:
max_execution_time = 3600;
I still get the timeout error. What else do i need to change?
Answer
Solution:
set max execution time to 0 so that it will not through timeout error...but you need to optimize your code or query to get records.
Answer
Solution:
In SugarCRM 7.6, theres a new configuration to override api.timeout
so i need to override the time to a higher value for me to avoid the Request timeout error :-)