Export 419 This Page has expired

I export a large amount of data, then encounter error 419: This page has expired.
2 Replies
steven.chang
steven.chang2w ago
In my environment (Filament v3.2.123), I have a total of 1,193 records. Currently, I have added:
protected $except = [
'filament/exports/',
];
protected $except = [
'filament/exports/',
];
However, I still encounter a 419 error. I'm not sure what else I can adjust.
morty
morty2w ago
Try queueing the export job? My immediate thought is that some dev servers only allow 1 concurrent connection and since the export job is using that connection, a table refresh via ajax is causing that. That's only a guess.

Did you find this page helpful?