How do I count the number of views(Hits) in magento? Are there any built in methods available in magento?
EDIT from the comment:
I need total views for the entire site. I got the online users count from this code:
$visitor_count = Mage::getModel('log/visitor_online')
->prepare()
->getCollection()
->count();
if(!empty($visitor_count) && $visitor_count > 0) {
$cnt = $visitor_count;
echo 'Visitors online :'.$cnt;
}