DEV Community

Kathryn Tan
Kathryn Tan

Posted on

Chunked File Upload with Livewire

Have you ever encountered the 413 status code error when uploading files in your Laravel application? This is due to the file's size exceeding our application or its server's maximum request size limits!

Of course we can increase the config limits in our server and PHP's to allow file uploads until a certain, new, and increased maximum limit. But do we perpetually increase our config limitations with each new file limit exceeded?

In my article Chunked File Upload with Livewire, instead of perpetually relying on increasing config limitations on request size, we'll slice, dice, and merge file chunks with Livewire!

Top comments (0)