List Max Size Exceeded Adv Pack Reports

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Redwood
    Member
    • Jul 2020
    • 45

    List Max Size Exceeded Adv Pack Reports

    Hello, Can anyone tell me where to increase the List Max Size in Reports/Advanced Pack. I do not see it in the data config file so I am thinking it is somewhere else. Thanks and I do appreciate the help. Everytime I try to open a report in list view, it throws this error. Espo.ERROR: (400) List max size exceeded. Thank you again if you have any ideas at all.


  • Maximus
    Senior Member
    • Nov 2018
    • 2731

    #2
    Hi Redwood,

    Please Investigate the file /application/Espo/Modules/Advanced/Controllers/Report.php. Take a look at this part of code:
    PHP Code:
    if ($maxSize > 200) {
        throw new BadRequest('List max size exceeded.');
    } 
    
    You can change it by change 200 to 300, etc. Remember that the best way to make the system changes is to create an appropriate files in the /custom/Espo/Custom/... location.

    Comment

    Working...