Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SugarCRM Request Timeout

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?

like image 704
Longki Dela Cruz Avatar asked Sep 26 '22 11:09

Longki Dela Cruz


1 Answers

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.

max_execution_time(0);
like image 180
Gagan Upadhyay Avatar answered Sep 28 '22 04:09

Gagan Upadhyay