我在使用Magento 1.7.0.2。当我查看类别中的所有产品时,我在加载一段时间后得到一个空白页面,有时我遇到内部服务器错误。
请告知
答案 0 :(得分:0)
如果它仅适用于少数几种产品,则很可能是内存不足。增加它。建议值为512M
,但越多越好。
答案 1 :(得分:0)
如果您使用过产品系列& addAttributeToSelect('*')就可以了。
或强>
<强>法师:: getModel( '目录/层') - &GT; prepareProductCollection($集合); 强>
然后不要使用任何一个
选择您需要的特定属性。 例如
$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addAttributeToSelect(array('name', 'url_key','price','lowest_price','service_id','description','short_description'));
因为加载产品的所有属性会影响大数据库。 它还会对网站性能产生影响
希望这能帮到你