All Solution List
Add New Solution
Pending Solution
Completed Solution
Checking Solution
All Cards Solution
Edit Solutions
Question
413 Request Entity Too Large - File Upload Issue
Assigner
Mukesh
Rashika
Atish
Aaditya
Kalyani
Brij
Developer
Mukesh
Rashika
Atish
Aaditya
Kalyani
Brij
Module
Product
Errors
Category
PHP
MYSQL
Status
Pending
Done
Checking
Working
Answer
Edit the conf file of nginx: nano /etc/nginx/nginx.conf Add a line in the http, server or location section: client_max_body_size 100M; Don't use MB it will not work, only the M! You can test the nginx config by: sudo nginx -t Then you need to restart or reload nginx: sudo nginx -s reload OR sudo systemctl restart nginx
SAVE