I am trying to get the entire magento product collection, without any filters or restrictions, but I fail to get all products.
I\'ve tried various methods already, but t
And something like this:
$products = Mage::getModel('catalog/product')->getCollection(); foreach($products as $prod) { $product = Mage::getModel('catalog/product')->load($prod->getId()); }
With this method I get more than 500 but all my product...