I had the same problem. I fixed this problem with some modification in the bottom file.
Application / code / kernel /Enterprise/Catalog/Model/Index/Action/Catalog/Category/Product/Refresh.php
Approximate line number 810
find
array(
Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH,
Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_CATALOG
)
and replace with
array(
Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH,
Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_CATALOG,
Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_SEARCH
)
Hope this helps you.
Hooray!
source
share