bigbadboy:
Any luck with the mysterious disappearing text field option?
I'm almost completely convinced I can use ZC on a big project except for this issue.
This only occurs in certain circumstances where you install a third party mod (after a clean install) and that mod deletes a few records from the DB.
The problem stems from a database issue that occurs on some installs of third party mods. Some of them inadvertently deleted a few records from the db, and that is the cause of the problem. To correct the mysterious disappearing text box on zen cart run the following lines of code from within your Admin (SQL Patches) area.
If you get "duplicate" error messages just disregard. It means that a line or two of those being inserted was already present (which is ok) in the db.
Run this and you should see the boxes stay put on the page now.
INSERT INTO `configuration` VALUES ('', 'Product option type Select', 'PRODUCTS_OPTIONS_TYPE_SELECT', '0', 'The number representing the Select type of product option.', 0, NULL, '2007-03-19 17:57:39', '2007-03-19 17:57:39', NULL, NULL);
INSERT INTO `configuration` VALUES ('', 'Upload prefix', 'UPLOAD_PREFIX', 'upload_', 'Prefix used to differentiate between upload options and other options', 0, NULL, '2007-03-19 17:57:39', '2007-03-19 17:57:39', NULL, NULL);
INSERT INTO `configuration` VALUES ('', 'Text prefix', 'TEXT_PREFIX', 'txt_', 'Prefix used to differentiate between text option values and other option values', 0, NULL, '2007-03-19 17:57:39', '2007-03-19 17:57:39', NULL, NULL);
INSERT INTO `configuration` VALUES ('', 'Image Handler Version', 'IH_VERSION', '2.0', 'This is used by image handler to check if the database is up to date with uploaded image handler files.', 0, 100, NULL, '2007-06-06 16:47:03', NULL, 'zen_cfg_textarea_small(');
This concept was pulled form an old post by Ajeh found here:
http://www.zen-cart.com/forum/showpost.php?p=408898&postcount=10