Did you delete the TEXT value from the products_options_values table?
Sort the table on products_options_values_id
If TEXT is missing add:
Then check your products_options_types table ... you should have 6 values in there:Code:INSERT INTO products_options_values (products_options_values_id, language_id, products_options_values_name) VALUES (0, 1, 'TEXT');
If not, you can delete what is there and re-add them with:
Be sure to backup your database before doing any changes.Code:INSERT INTO products_options_types (products_options_types_id, products_options_types_name) VALUES (0, 'Dropdown'); INSERT INTO products_options_types (products_options_types_id, products_options_types_name) VALUES (1, 'Text'); INSERT INTO products_options_types (products_options_types_id, products_options_types_name) VALUES (2, 'Radio'); INSERT INTO products_options_types (products_options_types_id, products_options_types_name) VALUES (3, 'Checkbox'); INSERT INTO products_options_types (products_options_types_id, products_options_types_name) VALUES (4, 'File'); INSERT INTO products_options_types (products_options_types_id, products_options_types_name) VALUES (5, 'Read Only');



