search - Not Getting Popular Searches In Magento Using Code -


how popular search terms on homepage ??

i have referenced following question : getting popular searches in magento

so, have used same code given below :

$searchcollectino=mage::getmodel('catalogsearch/query')->getcollection()  ->setpopularqueryfilter()  ->setpagesize($limit); 

they told using ->getitems() can search terms.

but not getting code can be..??

how use code ??

i got top 5 popular search terms following code :

$searchcollection = mage::getmodel('catalogsearch/query')->getcollection()  ->setorder('popularity', 'desc'); $searchcollection->getselect()->limit(8); foreach ($searchcollection $item) {       echo $item->getdata('redirect');     echo $item->getdata('query_text'); } 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -