
Originally Posted by
tylerd213
I have found a major bug, which i really hope can be fixed.
When you install this add-on and execute the SQL query it messes up the attributes.
If you have a text attribute and mark it as required, it still lets users continue to the cart without typing anything in..
I know for a fact it is this addon because i had to start from scratch again and once I executed the SQL I was unable to receive an error when no text was entered in the text attribute
Please let me know if this can be fixed because i really do love this addon!!!
Thanks for finding the bug. I reviewed the sql code and the database and found out that 3 fields were accidentally removed.
To fix the bug, you should BACKUP your database and then run the following 3 statements in Admin->Tools->Install SQL Patches
Code:
INSERT INTO `configuration` VALUES (316, 'Product option type Select', 'PRODUCTS_OPTIONS_TYPE_SELECT', '0', 'The number representing the Select type of product option.', 0, NULL, '2006-09-25 20:11:52', '2006-09-25 20:11:52', NULL, NULL);
INSERT INTO `configuration` VALUES (322, 'Upload prefix', 'UPLOAD_PREFIX', 'upload_', 'Prefix used to differentiate between upload options and other options', 0, NULL, '2006-09-25 20:11:52', '2006-09-25 20:11:52', NULL, NULL);
INSERT INTO `configuration` VALUES (323, 'Text prefix', 'TEXT_PREFIX', 'txt_', 'Prefix used to differentiate between text option values and other option values', 0, NULL, '2006-09-25 20:11:52', '2006-09-25 20:11:52', NULL, NULL);
The above code adds the 3 fields that were initially removed when Ty_Package_Tracker was installed. The above statements were ran on my live website and tested without any problems.
Bookmarks