Magento set message into the cookie "mage-messages", but nobody removes them. After a while,
the cookie will grow so long that exceeds the cookie limit.
@dbsdsun, thank you for your report.
We were not able to reproduce this issue by following the steps you provided. If you'd like to update it, please reopen the issue.
We tested the issue on 2.3.0, 2.2.0, 2.1.9
@magento-engcom-team I had this problem recently
mage-messages is to big to fit to the default nginx settings, provided in this repository
Headers buffer full, so
add the following lines
to the nginx config (server area)
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
and restart nginx
the problem is Magento keeping adding cookie without removing old ones in my experience.
Therefore, adjusting nginx is not a solution.
for those who found this page with this issue.
I fixed this problem by adding this configuration to /etc/nginx/nginx.conf:
http {
.... your config ...
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
}
(from stack overflow)
for those who found this page with this issue.
I fixed this problem by adding this configuration to /etc/nginx/nginx.conf:http { .... your config ... fastcgi_buffers 16 16k; fastcgi_buffer_size 32k; }
(from stack overflow)
This works for me as well. Thanks for solution!
for those who found this page with this issue.
I fixed this problem by adding this configuration to /etc/nginx/nginx.conf:http { .... your config ... fastcgi_buffers 16 16k; fastcgi_buffer_size 32k; }
(from stack overflow)
This works for me as well. Thanks for solution!
Works for me - a lot of crying before I found this solution.
Most helpful comment
for those who found this page with this issue.
I fixed this problem by adding this configuration to /etc/nginx/nginx.conf:
(from stack overflow)