Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 33
  1. #21
    Join Date
    Mar 2005
    Location
    Tempe, AZ
    Posts
    324
    Plugin Contributions
    0

    Default Re: problem searching products in Admin

    I am having the same problem, it seem to be everyone that has EP installed, The products that i uploaded with EP doesn't show up when i use the search in admin. I tried what AJ suguested and the search brings back products not related to the word i use. for example i use the word "smart" and the resulst where: RCA DRC8295 DVD Recorder/VCR Combo and Samsung SPP2040 Photo Color Printer

    Those where the only two items that came up. Anyone have a fix yet?

    I have another problem not sure if it is related or not when i did the upgrade from 1.3.5 to 1.3.6 per the Doc instructions i still get the message that there is a updated version 1.3.6 download here. when i first login to admin. That is fine i have it set to tell me that so i know when there are bug fixes and update. But at the footer in admin just below the zencart logo i have this message :"E-Commerce Engine Copyright © 2003 Zen Cart™ Zen Cart v1.3.5/v1.3.6"

    I am nto sure why i followed the instructions correctly. Any ideas?
    Lextechs.com Powered By ZenCart

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

    Default Re: problem searching products in Admin

    If you are able, check and see that all of your products have a products_id in the products_description and products_to_categories tables ...

    Then see that the categories_id that they are matched to are in the categories and categories_description table ...

    You can check this in phpMyAdmin ...
    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. #23
    Join Date
    Mar 2005
    Location
    Tempe, AZ
    Posts
    324
    Plugin Contributions
    0

    Default Re: problem searching products in Admin

    Quote Originally Posted by Ajeh View Post
    If you are able, check and see that all of your products have a products_id in the products_description and products_to_categories tables ...

    Then see that the categories_id that they are matched to are in the categories and categories_description table ...

    You can check this in phpMyAdmin ...
    Every thing checks out ok, in those table you said to look in
    Lextechs.com Powered By ZenCart

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

    Default Re: problem searching products in Admin

    In the Admin on the Categories/Products this is the main criteria for the search on Products:
    PHP Code:
                                    and (
                                    
    pd.products_name like '%" . zen_db_input($_GET['search']) . "%'
                                    
    or pd.products_description like '%" . zen_db_input($_GET['search']) . "%'
                                    
    or p.products_model like '%" . zen_db_input($_GET['search']) . "%')" .
                                    
    $order_by); 
    If you were to go into phpMyAdmin and search the products_name and products_description using the Like%...% you should pull up the same products (excluding the products_model located in the products table) ...

    Try a search on something in your Zen Cart Admin that is a products_name ... now do the same in phpMyAdmin ... how many records come up in each?
    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. #25
    Join Date
    Mar 2006
    Posts
    919
    Plugin Contributions
    2

    Default Re: problem searching products in Admin

    Thorght I'd jump in on this one, as I'm having the same problem too!

    The strange thing is, I think this all occured after the 1.3.7 upgrade. I started out on 1.3.0.2 then upgraded the 1.3.6 and then 1.3.7.

    All products were added to my database using Easy Populate (when I was running 1.3.0.2. Everything (the search from admin and so on) was working fine until the 1.3.7 upgrade.

    Like other users, I can search for products manually created, but not those imported using EP. However, the problem did not exist in 1.3.0.2 or 1.3.6.

    Has anyone found a solution for this yet?

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

    Default Re: problem searching products in Admin

    You are missing the field:
    master_categories_id

    in the products table ...
    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!

  7. #27
    Join Date
    Mar 2006
    Posts
    919
    Plugin Contributions
    2

    Default Re: problem searching products in Admin

    Ajeh,

    I've just gone to Admin | Store Manager and run Reset ALL Products Master Categories ID.

    It appears to have sorted the problem. Maybe it added the missing field?

    Is this a 'safe' fix? Just want to be sure before running on my live store.

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

    Default Re: problem searching products in Admin

    The master_categories_id is maintained throught the admin regardless of adding, editing, moving, copying products etc. by the Zen Cart Admin ...

    Unfortunately, many import programs do not address this field nor the products_price_sorter ... so they are not current and up to date ...

    If you do not use Linked Products, you can just run the Update in the Tools ... Store Manager for:

    1 Master Categories ID

    2 Products Price Sorter

    in that order ...

    If you do have Linked Products ... be aware that what this does is select the first categories_id in the products_to_categories table and assign it as the master_categories_id ...

    Usually this is correct ... but should be checked ...

    NOTE: Always backup your database before running these types of changes as well as on a regular basis ...
    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!

  9. #29
    Join Date
    Mar 2006
    Posts
    919
    Plugin Contributions
    2

    Default Re: problem searching products in Admin

    Excellent... thanks for the help! :)

  10. #30
    Join Date
    Jun 2006
    Posts
    96
    Plugin Contributions
    0

    Default Re: problem searching products in Admin

    Also worked for me, much thanks!

 

 
Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Searching for products in Admin
    By askaquestion in forum General Questions
    Replies: 0
    Last Post: 3 Apr 2009, 06:22 PM
  2. Problem when searching
    By karenkte in forum General Questions
    Replies: 2
    Last Post: 6 Nov 2008, 11:06 PM
  3. Admin Developers Tool Kit not searching my Admin files
    By ronlee67 in forum General Questions
    Replies: 5
    Last Post: 2 Jan 2008, 05:43 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