And what did we do with our Option Name Option Type table ... did we lose it?
Look in phpMyAdmin ...
Find your database and find the table: products_options_types
Browse it ... there should be 6 records in there ...
How many do you have?![]()
And what did we do with our Option Name Option Type table ... did we lose it?
Look in phpMyAdmin ...
Find your database and find the table: products_options_types
Browse it ... there should be 6 records in there ...
How many do you have?![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
No records there!! That probably explains it.
I'll install a fresh database and copy the tabel over. That should be ok, right?
By the way... just wanted to say keep up the good work with development. :)
I'll be sure to buy you people some coffee soon... might even get you a coffee machine! ;)
Hang on ... hang on ...
We may be able to fix this table ... give me a minute ...![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
In your Zen Cart Admin ...
Run this via the Tools ... Insert SQL Patches ...
Then run this:PHP Code:DROP TABLE IF EXISTS products_options_types;
CREATE TABLE products_options_types (
products_options_types_id int(11) NOT NULL default '0',
products_options_types_name varchar(32) default NULL,
PRIMARY KEY (products_options_types_id)
) TYPE=MyISAM COMMENT='Track products_options_types';
NOTE: via the Insert SQL Patches ... do NOT change anything regardless of table prefixes etc. it will be done automatically for you ...PHP 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');
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
I've just copied the table from a fresh install and it's worked fine. Is that ok or should I have followed your steps outlined above?
My post is what you would get if you did a fresh install ...
That is what is in the /zc_install/mysql_zencart.sql file and I just grabbed the structure and data for it ...
So ... go test it out ... does it work?![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Already tested and it works a treat! :)
Not really sure why/how the data was lost form the table. But it's back now... with a little of your advice.
Thanks for the help.