Jump to content

Missing Inventory


Guest Korndawg9951

Recommended Posts

Guest Korndawg9951

Hey guys, I hired a database guy to build me a MySql database with over 1500 products on it. I just got done importing these products into the inventory section of the database.

So looking in phpMyAdmin I can see 1728 different products. However when I go to the site or even the View Products link of the admin panel it only shows products 1658-1684 (26 products). I am confused because its in the database but the script on the site isnt pulling the entire database...

Anyone know what needs to be done?

Link to comment
Share on other sites

Hi

It sounds as if you have updated your inventory file, but not your catagories file.

I get the same if I upload by importing a csv. file. There is a script that adds the necessary links to the catagories table.

I copy the following:

TRUNCATE TABLE CubeCart_cats_idx;

INSERT INTO CubeCart_cats_idx (productid, cat_id) SELECT productid, cat_id FROM CubeCart_inventory;

into the window that opens by clicking "sql" in the phpmyadmin pages and clicking go.

It does the trick for me. I do, however, have the items appearing in the admin sectiion, but I do put the main catagory ID in the database that I upload.

Link to comment
Share on other sites

There is also a free "fixcatcount" script (google for it) which will update the category counts.

When I do a bulk import, my code automatically appends the SQL statements on the prev post, and then I run the fixcatcounts script - all is then ok :-)

Jason

Link to comment
Share on other sites

Guest Korndawg9951

Thanks for the help! I fixed it last night, the problem was my database guy didn't know what to put the category id's to, so he just started putting random numbers. They all should have just been the regular 2.

Thanks again!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...