Working with a product attribute that has over 4,000 values. Trying to set one as "Is Default".
When I click "save", it goes back to the Dashboard and has not saved the Default value.
Tried this in 2.4.2 ad 2.4.3-p1 - no joy. Presumably the number of values is too large for a save to work properly.
How can I set this programmatically? Or otherwise?
Edit the /etc/nginx/nginx.conf file to increase the limit of the files to upload:
http: http { ... client_max_body_size 100M; } server: server { ... client_max_body_size 100M; } location: location /uploads { ... client_max_body_size 100M; }
Wow! Thanks! I'll have to try this - solving this would be awesome.