cancel
Showing results for 
Search instead for 
Did you mean: 

Attribute Default Value Save Error

Attribute Default Value Save Error

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?

2 REPLIES 2

Re: Attribute Default Value Save Error

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;
} 

 

LitExtension - #1 Shopping Cart Migration Expert

LitExtension helps store owners and agencies migrate all important data from one eCommerce platform to another accurately, securely and at the highest speed.

Visit website: http://litextension.com/

Re: Attribute Default Value Save Error

Wow! Thanks! I'll have to try this - solving this would be awesome.