在OrderController.php中,用于地址操作,
$ address = Mage :: getModel(' sales / order_address') - > getCollection() - > getItemById($ addressId);
我收到错误 PHP致命错误:允许的内存大小为3221225472字节耗尽(尝试分配84个字节
答案 0 :(得分:0)
增加服务器配置的内存限制。
在php.ini
文件中,更新内存限制如下。
memory_limit = 256M
如果您无法访问php.ini
文件,请使用.htaccess
文件更新部分,如下所示。
...
<IfModule mod_php5.c>
## other configuaration goes here
php_value memory_limit 256M
</IfModule>
...