Magento export error 500

1.2k Views Asked by At

When I try to export about 1200 product with the Export > Data Profile > Export all tool, it throws an error 500.

When I do the same thing with just one group of products, it works out fine.

My Server Setup:

log_errors  On  
max_execution_time  36000
max_input_time  300
max_input_vars  10000
memory_limit    1024M

It says I should look in the error log, but there are no errors showing. I am running out oof things to test here. Could it be some broken product?

1

There are 1 best solutions below

0
On

app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php

line: 873

$dataRow += $stockItemRows[$productId];

In order to update the code to:

$dataRow = array_merge($dataRow,$stockItemRows[$productId]);