by Luis de Vasconcelos.
The \blocks\configurable_reports\reports\sql\report.class.php page starts off by defining BLOCK_CONFIGURABLE_REPORTS_MAX_RECORDS and setting the value to 5000 records.
defined('BLOCK_CONFIGURABLE_REPORTS_MAX_RECORDS') || define('BLOCK_CONFIGURABLE_REPORTS_MAX_RECORDS', 5000);
Are there any negative consequences of increasing that BLOCK_CONFIGURABLE_REPORTS_MAX_RECORDS value from the hardcoded 5000 to something higher, e.g. 25000?
Ok, producing a report with 25000 records might put some strain on the server, but are there any other consequences?