Import Orders Error – Fatal Error: Allowed Memory Size Exhausted

importexportorders

we are using this extension : https://www.magentocommerce.com/magento-connect/bulk-import-export-orders-to-csv.html

when we try to import one order , its working fine.

when we trying to import the more orders, we are getting this error :

Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 66 bytes) in /var/www/html/sitename/lib/Zend/Log/Formatter/Simple.php on line 103

but exporting is fine.

please help me to find solution

Best Answer

Magento comes with a default .htaccess file in the root directory that includes this configuration directive:

php_value memory_limit sizeinMBs

Comment this line by placing # at starting or try increasing this size to 512MB or more (depending on your need). Also If you can, try changing memory_limit in PHP.ini file.

Related Topic