Because When I upload above 2mb size of image in node js using mysql
"not upload throw some issues"
"Got a packet bigger than 'max_allowed_packet' bytes"
I am using npm module multer
for file upload. My code for upload image is as follows:
Because When I upload above 2mb size of image in node js using mysql
"not upload throw some issues"
"Got a packet bigger than 'max_allowed_packet' bytes"
I am using npm module multer
for file upload. My code for upload image is as follows:
You should modify in the my.ini or ~/.my.cnf file
max_allowed_packet=512M
You can insert this line under [mysqld] section.
After this change please Restart the mysql once. Thank you!