diff --git a/Controller/Index/Feed.php b/Controller/Index/Feed.php index e0aab56..61c46a3 100755 --- a/Controller/Index/Feed.php +++ b/Controller/Index/Feed.php @@ -56,6 +56,7 @@ private function getProductCollection() public function execute() { // Set timelimit to 0 to avoid timeouts when generating feed. + ob_start(); set_time_limit(0); $store = $this->storeModel->getStore(); @@ -124,7 +125,7 @@ public function execute() // TODO:- Implement caching of feed print $productFeed; - exit(); + // exit(); } else { print "Product Feed is disabled."; }