Results 1 to 6 of 6
  1. #1
    Join Date
    Apr 2007
    Posts
    7
    Plugin Contributions
    0

    Default Help with adding products

    I'm not sure what I have done wrong so I am hoping that someone here can help me.

    I have added a category called 'Gift Certificates' and when I go to add a product to that category, I just get an Error 404 page (page not found).

    What am I missing here? I'm really needing some help. Anyone?

    Dean.

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

    Default Re: Help with adding products

    Have you added products before?

    Almost sounds like a bad upload of files in the:
    /admin

    and all of the directories and files with a corrupt file causing this ...

    The other cause could be bad Product Types ...

    Peek in phpMyAdmin ... look at your database and the product_types table ...

    Browse it ... what do you see in there?
    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!

  3. #3
    Join Date
    Apr 2007
    Posts
    7
    Plugin Contributions
    0

    Default Re: Help with adding products

    Here is a screen dump of what you requested. Can you see anything wrong?
    Attached Images Attached Images  

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

    Default Re: Help with adding products

    You have renamed all of the product types ...

    But ... you did not create the code to go with your new names ...

    Those fields are used to build filenames and constants and variables etc.

    Unfortunately you cannot just make them up as you go along without building the file set to go with them ...

    So the choice is to put that table back to the default settings ... or get coding to make all the new file sets needed to match your new product types ...
    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!

  5. #5
    Join Date
    Apr 2007
    Posts
    7
    Plugin Contributions
    0

    Default Re: Help with adding products

    Thanks for your reply Linda. Is there a link that I can go to that explains how to do it right? I don't know what code to add so I really need somthing to read to get me going in the right direction.

    Thankyou once again,
    Dean.

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

    Default Re: Help with adding products

    Did you make all new Product Types or did you just rename things in the product_types table?

    IF you just renamed things, do you intend to create full Product Type file sets for the catalog and admin?

    If not, you can remake the product_types table back to its original format and that should fix things ...
    PHP Code:
    DROP TABLE IF EXISTS product_types;
    CREATE TABLE product_types (
      
    type_id int(11NOT NULL auto_increment,
      
    type_name varchar(255NOT NULL default '',
      
    type_handler varchar(255NOT NULL default '',
      
    type_master_type int(11NOT NULL default '1',
      
    allow_add_to_cart char(1NOT NULL default 'Y',
      
    default_image varchar(255NOT NULL default '',
      
    date_added datetime NOT NULL default '0001-01-01 00:00:00',
      
    last_modified datetime NOT NULL default '0001-01-01 00:00:00',
      
    PRIMARY KEY  (type_id),
      
    KEY idx_type_master_type_zen (type_master_type)
    TYPE=MyISAM
    PHP Code:
    INSERT INTO product_types VALUES (1'Product - General''product''1''Y'''now(), now());
    INSERT INTO product_types VALUES (2'Product - Music''product_music''1''Y'''now(), now());
    INSERT INTO product_types VALUES (3'Document - General''document_general''3''N'''now(), now());
    INSERT INTO product_types VALUES (4'Document - Product''document_product''3''Y'''now(), now());
    INSERT INTO product_types VALUES (5'Product - Free Shipping''product_free_shipping''1''Y'''now(), now()); 
    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. Replies: 3
    Last Post: 9 May 2013, 09:46 PM
  2. Help with adding related products
    By ricangem in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 17 Apr 2011, 06:49 PM
  3. Need help with adding additional products under same group
    By bedtime21 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 13 Aug 2009, 10:17 PM
  4. Help with adding attributes to many products
    By mdegrandis in forum Setting Up Categories, Products, Attributes
    Replies: 6
    Last Post: 9 Jun 2009, 10:10 PM
  5. Help!!! Problem with adding products
    By mainline in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 29 Oct 2007, 05:36 PM

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