IrfanU's avatar

Handling Large Files Upload With Laravel

Hello,

How would you guys approach uploading large files (up to several Gbs) in Laravel. Also what would be the best way notify the user automatically when his/her file is uploaded successfully.

0 likes
3 replies
NickVahalik's avatar

Are you uploading through a web page? Or are you watching an S/FTP upload?

IrfanU's avatar

I am uploading through a webpage

NickVahalik's avatar

Well, outside of simply ensuring that the web server is actually capable of uploading such large files, you might want to consider utilizing a component that helps with resuming of failed uploads and/or maybe even considering writing a custom endpoint that can process chunking of uploads from a JS file uploader.

Please or to participate in this conversation.