I had to alter a field in the database, don't remember exactly which one right now. I think I mentioned it in the readme...
Yep:
If you want to increase the length of Option Name comments allowed from the standard 64 characters, you will need to modify a database setting.
In your admin > Tools > Install SQL Patches, you may copy and paste this code and send (only do this if you need to):
For up to 255 characters:
Code:
ALTER TABLE products_options MODIFY products_options_comment VARCHAR(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL;
or for longer comments:
Code:
ALTER TABLE products_options MODIFY products_options_comment TEXT CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL;
You might want to check if the "latin1_swedish_ci" is still correct for recent Zen Cart versions/installations. I would examine your existing version of the field in the db and coordinate with that.
Bookmarks