Fix for "No search results" after CLI reindex on Magento Enterprise (SOLR)
Edit shell/abstract.php
and add Mage::app()->addEventArea('adminhtml');
public function __construct()
{
if ($this->_includeMage) {
require_once $this->_getRootPath() . 'app' . DIRECTORY_SEPARATOR . 'Mage.php';
Mage::app($this->_appCode, $this->_appType);
+ Mage::app()->addEventArea('adminhtml');
}
$this->_applyPhpVariables();
$this->_parseArgs();
$this->_construct();
$this->_validate();
$this->_showHelp();
}