Magento 1.4.1.1 ::: 导出产品导致致命错误
我通过 Magento 的导出配置文件功能将大约 1200 个产品导出到 csv。
导出开始然后锁定。
php 有这个可以使用: 最大执行时间 28000 memory_limit 1024M
我收到此错误: [2011 年 3 月 23 日星期三 12:48:33] [错误] [客户端 84.229.93.19] PHP 致命 错误:允许的内存大小 1073741824 字节已耗尽(尝试 分配24字节) /path/to/lib/Zend/Db/Adapter/Pdo/Abstract.php 上 第 292 行,引用: http://domain.com/index.php/ admin/system_convert_profile/edit/id/10/key/598b0f0c45b13aba68a3fbe2b06a4d85/
现在,我知道 Magento 1.4.1.1 有一个内存泄漏,直接影响这个过程,我应用了一个补丁来处理这个问题: http://blog.ewtechnologies.com/ magento-2/magento-memory-leak-1-4-1-1/
但我仍然有这个问题。
有人对此有其他见解吗?即使升级到 1.5.x 有帮助吗?
I am exporting around 1200 products to csv via Magento's export profile feature.
The export begins and then locks up.
php has this to work with:
max_execution_time 28000
memory_limit 1024M
I get this error:
[Wed Mar 23 12:48:33 2011] [error] [client 84.229.93.19] PHP Fatal
error: Allowed memory size of 1073741824 bytes exhausted (tried to
allocate 24 bytes) in
/path/to/lib/Zend/Db/Adapter/Pdo/Abstract.php on
line 292, referer:
http://domain.com/index.php/admin/system_convert_profile/edit/id/10/key/598b0f0c45b13aba68a3fbe2b06a4d85/
Now, I know Magento 1.4.1.1 has a memory leak that directly affects this process,a nd I applied a patch to treat the issue:
http://blog.ewtechnologies.com/magento-2/magento-memory-leak-1-4-1-1/
But I still have this problem.
Does anyone have any other insights into this? Even if upgrading to 1.5.x will help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需增加 php 的内存,直到成功,因为它将所有数据缓冲到内存中,并且实现有些愚蠢
Just increase the memory for php until it succeeds as it buffers all the data to memory and is somewhat stupidly implemented