Results 1 to 3 of 3
  1. #1
    Join Date
    Jul 2008
    Posts
    1
    Plugin Contributions
    0

    Default Adding Attributes

    Hi. to everyone from a new zenner.
    Can anyone help with this query please :-
    In an attempt to add attributes via Admin.Catalog.Option Name Manager.
    I'm confronted with the following :-

    1146 Table 'web177-yeso9355.products_options_types' doesn't exist
    in:
    [select products_options_types_id, products_options_types_name from products_options_types order by products_options_types_id]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

    Answers in words of one syllable would be a great help as I'm a novice !

  2. #2
    Join Date
    Aug 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: Adding Attributes

    That table SHOULD exist unless there's something else wrong somewhere....

    In phpmyadmin you could try executing the following SQL:

    Code:
    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`)
    )
    In your hosting account control panel you should have a link for phpmyadmin (probably at the bottom of the screen you get when you click mysql databases.

    Once running mysqladmin you need to select the database (there may only be one) and then click the SQL tab. You can paste the above text into the box and click Go.

    Sam

  3. #3
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Adding Attributes

    You may also want to add the Option Name Types to that table after it is built:
    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!

 

 

Similar Threads

  1. Adding attributes
    By 001ivy in forum Setting Up Categories, Products, Attributes
    Replies: 12
    Last Post: 11 Dec 2010, 12:14 PM
  2. adding attributes
    By amarkabove in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 10 Dec 2010, 04:44 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg