Export from bulk actions & select all records (8000) generate error #223
-
I've a complex table with 8000 records and ExportBulkAction with chunk size of 500. Can somebody help me with this issue? Diego |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Is it coming from the export or the request itself?
|
Beta Was this translation helpful? Give feedback.
-
Hey :) If you are still facing the issue maybe try it like @pxlrbt said and use a HeaderAction. <?php
->headerActions([
ExportAction::make()->exports([
ExcelExport::make('table')
->fromTable()
->queue()
])
]); This way if you are having a large amount of data the process is being queued and processed in the background. |
Beta Was this translation helpful? Give feedback.
Hey :)
If you are still facing the issue maybe try it like @pxlrbt said and use a HeaderAction.
It should look something like this at the end (based on my project and how I got it to work)
This way if you are having a large amount of data the process is being queued and processed in the background.