Magento Import/export issue

久未见 提交于 2019-12-13 10:01:59

问题


I am currently trying to export 'all products' via the run profile. However an error is returned.

Request Timeout

This request takes too long to process, it is timed out by the server. If it should not be timed out, please contact administrator of this web site to increase 'Connection Timeout'.

If someone could help me that would be great!

Thank You


回答1:


You need to increase your execution time limit

php.ini in your magento root with this setting:

max_execution_time = 1800

Also modify the memory limit allocated to php when using Magento

memory_limit = 512M

Alternatively you can edit index.php, if you don't have php.ini access.

ini_set('max_execution_time', 1800);


来源:https://stackoverflow.com/questions/29890863/magento-import-export-issue

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!