Announcement

Collapse
No announcement yet.

List Max Size Exceeded Adv Pack Reports

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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.



  • #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...
    X