
Originally Posted by
barco57
It is because the download max days are stored on an order-by-order basis.
So only new orders will get the new setting. Existing orders have the settings that were set at the time of their order.
You would have to go into the orders_products_download table and set the download_maxdays column to 0 for every order.
Right, it has nothing to do with the number of downloads allowed.
To set downloads as "unrestricted" for all ordered products (once you've set Attribute Settings :: Download Expiration (Number of Days) to 0 (no limit)), you can copy/paste this into your admin's Tools :: Install SQL Patches (after you've created a backup of the database):
Code:
UPDATE orders_products_download SET download_maxdays = 0;