I am trying to upload large images to server (binary file upload) via postman, it works fine for files sized 2 MB and below, however for files > 2 MB the upload fails
I set php.ini
upload_max_filesize = 100M post_max_size = 100M
and
nginx /etc/nginx/nginx.conf
client_body_buffer_size 100M; client_max_body_size 100M;
but it doesn't work
I tried plupload package for chunk upload but it also doesn't work for files > 2 MB
Any ideas how to upload large images in laravel ?
phpinfo()
function show the updated values which you did change? – rsz