Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Magento SKUs not working in basic search

Tags:

magento

Search has stopped working for complete and partial SKUs on a site I am in the process of developing, this functionality has previously worked.

Diffing an older .SQL for the site when this worked I can't see any changes to core_config_data that would effect the site in this way.

Search is set to combined and like. SKUs are still searchable from the advanced search page.

Does anyone have any idea what tables that I should should be looking at for changes effecting search behavior? My hunch is that there is some backend change causing this.

like image 693
Kelvin Avatar asked Oct 02 '12 09:10

Kelvin


People also ask

How many SKUs can Magento handle?

Magento can handle several hundred thousand product SKUs without any major performance tuning requirements. There really is no limit to the number of SKUs Magento can hold.

How do I enable all products in Magento 2?

In order to assign all products to the website please, go to your Magento 2 Admin panel > Catalog > Product and Select All products. Then, choose Update attributes in the Actions select box. Afterwards, move to the Product Information > Websites and in the Add Product to Websites section, choose the website you need.


1 Answers

Does anyone have any idea what tables that I should should be looking at for changes effecting search behaviour?

Yep, it's catalogsearch_fulltext. Magento fills this table during partial and full reindex of "Catalog Search" index.

BTW, I think the problem is in the attribute's settings. Go to Admin Panel -> Catalog -> Attributes -> Manage attributes -> (chose SKU attribute) -> Use in Quick Search -> Value should be "Yes"

like image 94
vsushkov Avatar answered Sep 30 '22 12:09

vsushkov