• Hi, we are working with newest WordPress version an WooCommerce Version.
    For our products there are a lot of variations. After creating all poduct variations for one product, we recognized that we can’t set all product variations.. are they too much? If we type the prices and enable the “activ” button and save this product, everything is lost.. the price field is empty and the activ button is not active.. How we can fix this?? Is this an WooCommerce Problem? We thought it might be an Server problem, so we set the htaccess file with this code:

    php_value memory_limit 500M
    php_value suhosin.max_array_index_length 256
    php_value suhosin.post.max_array_index_length 256
    php_value suhosin.post.max_totalname_length 65535
    php_value suhosin.post.max_vars 1024
    php_value suhosin.request.max_array_index_length 256
    php_value suhosin.request.max_totalname_length 65535
    php_value suhosin.request.max_vars 1024

    But this wasn’t fix the problem. Please help us to find the mistake.

    Thanks a lot.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Not sure if you’re experiencing the same problem I had. After updating to 2.1.12 the variable pricing disappeared. When you clicked on the variable, no price would show up, and no “add to cart” button. The variable option (size) was still visible, just the pricing wouldn’t show. After a lot of testing and backing up, I deleted 2.1.12 and installed 2.1.8 (my last working version) and all is well again.

    I totally bypassed the .htaccess file route. Luckily my client was with Godaddy and they instructed me how to make my own php.ini file, even on shared hosting. You just got to create a “.user.ini” in the root if you are using Cpanel, if not on Cpanel then name it “php5.ini”

    Then plugin this to that file and you good to go!

    suhosin.post.max_array_index_length = 256
    suhosin.post.max_totalname_length = 65535
    suhosin.post.max_vars = 1024
    suhosin.request.max_array_index_length = 256
    suhosin.request.max_totalname_length = 65535
    suhosin.request.max_vars = 1024
    
    max_input_vars = 2000

    change the variables as needed.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Is there a limit for "Product Variations"??’ is closed to new replies.