0

我在 Magento 1.7.0.2 上。当我查看类别中的所有产品时,加载一段时间后出现空白页面,有时会出现内部服务器错误。

请指教

4

2 回答 2

0

如果您在其上使用了产品集合和addAttributeToSelect('*')

或者

Mage::getModel('catalog/layer')->prepareProductCollection($collection);

然后不要使用任何一个

选择您需要的特定属性。例如

$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addAttributeToSelect(array('name', 'url_key','price','lowest_price','service_id','description','short_description'));

因为加载产品的所有属性会影响大数据库。及其对网站性能的影响

希望这对你有帮助

于 2013-10-10T11:35:25.417 回答
0

如果它仅适用于少数产品,则很可能您的内存不足。增加它。推荐值为512M,但越多越好。

于 2013-10-07T08:20:58.420 回答